14 lines
204 B
Dart

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