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