toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final map = <String, dynamic>{};
  map['id'] = _id;
  map['project_id'] = _projectId;
  map['title_display'] = _titleDisplay;
  map['title'] = _title;
  map['image_web_type'] = _imageWebType;
  map['image_mobile_type'] = _imageMobileType;
  map['image_web'] = _imageWeb;
  map['image_web_full'] = _imageWebFull;
  map['image_mobile'] = _imageMobile;
  map['image_mobile_full'] = _imageMobileFull;
  return map;
}