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