toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final image = this.image;
  final info = this.info;
  final title = this.title;
  return {
    'description': ?description,
    'image': ?image,
    'info': ?info,
    'title': ?title,
  };
}