18 lines
250 B
Dart
18 lines
250 B
Dart
|
class QuestionAnswer {
|
||
|
int? index;
|
||
|
double? left;
|
||
|
double? top;
|
||
|
String? question;
|
||
|
String? answer;
|
||
|
bool? display;
|
||
|
|
||
|
QuestionAnswer({
|
||
|
this.index,
|
||
|
this.left,
|
||
|
this.top,
|
||
|
this.question,
|
||
|
this.answer,
|
||
|
this.display,
|
||
|
});
|
||
|
}
|