BannerData.fromJson constructor
BannerData.fromJson(
- dynamic json
Implementation
BannerData.fromJson(dynamic json) {
_id = json['id'];
_projectId = json['project_id'];
_titleDisplay = json['title_display'];
_title = json['title'];
_imageWebType = json['image_web_type'];
_imageMobileType = json['image_mobile_type'];
_imageWeb = json['image_web'];
_imageWebFull = json['image_web_full'];
_imageMobile = json['image_mobile'];
_imageMobileFull = json['image_mobile_full'];
}