16 lines
266 B
Dart
16 lines
266 B
Dart
class CardData {
|
|
final String word;
|
|
final String translation;
|
|
final String? image;
|
|
final int mark;
|
|
final String? id;
|
|
|
|
const CardData({
|
|
required this.word,
|
|
required this.translation,
|
|
required this.image,
|
|
this.mark = 0,
|
|
this.id
|
|
});
|
|
}
|