13 lines
383 B
Dart
13 lines
383 B
Dart
class form {
|
|
late String satisfaction;
|
|
late String typeOfFeedback;
|
|
late String writtenFeedback;
|
|
late String timestamp;
|
|
|
|
form(String satisfaction, String typeOfFeedback, String writtenFeedback, String timestamp){
|
|
this.satisfaction = satisfaction;
|
|
this.typeOfFeedback = typeOfFeedback;
|
|
this.writtenFeedback = writtenFeedback;
|
|
this.timestamp = timestamp;
|
|
}
|
|
} |