toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final imageStyle = this.imageStyle;
  final imageUrl = this.imageUrl;
  final subtitle = this.subtitle;
  final title = this.title;
  return {
    'imageStyle': ?imageStyle,
    'imageUrl': ?imageUrl,
    'subtitle': ?subtitle,
    'title': ?title,
  };
}