CampaignArray.fromJson constructor
CampaignArray.fromJson(
- dynamic json
Implementation
CampaignArray.fromJson(dynamic json) {
_cpTotal = json['cp_total'];
_id = json['id'];
_projectId = json['project_id'];
_bannerName = json['banner_name'];
_banner = json['banner'];
_bannerFull = json['banner_full'];
_name = json['name'];
_description = json['description'];
_title = json['title'];
_location = json['location'];
_fromTimestamp = json['from_timestamp'];
_toTimestamp = json['to_timestamp'];
_fromDate = json['from_date'];
_fromDateTime = json['from_date_time'];
_toDate = json['to_date'];
_toDateTime = json['to_date_time'];
_isActive = json['is_active'];
_isDeleted = json['is_deleted'];
_createdAtToday = json['created_at_today'];
_createdAt = json['created_at'];
_createdTime = json['created_time'];
_updatedAt = json['updated_at'];
_masterUserId = json['master_user_id'];
_textColor = json['text_color'];
_textPosition = json['text_position'];
}