toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'id': id,
    'title': title,
    'body': body,
    'url': url,
    'imageUrl': imageUrl,
    'data': data,
  };
}