class TopLeft { String? image; String? text; TopLeft({this.image, this.text}); factory TopLeft.fromJson(Map json) => TopLeft( image: json['image'] as String?, text: json['text'] as String?, ); Map toJson() => { 'image': image, 'text': text, }; }