toJson method
Implementation
@override
Map<String, dynamic> toJson() {
final Map<String, dynamic> json = super.toJson();
json['image'] = image.toJson();
json['title'] = title.toJson();
json['description'] = description.toJson();
json['coords'] = coords.toJson();
return json;
}