8 lines
88 B
Dart
8 lines
88 B
Dart
class CardModel {
|
|
final String image;
|
|
|
|
CardModel({
|
|
required this.image,
|
|
});
|
|
}
|