toJson method

Map<String, dynamic> toJson()

Implementation

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