10 lines
121 B
Dart

class CardData {
final String text;
final String? imageUrl;
CardData(
this.text, {
this.imageUrl,
});
}