CampaignArray constructor
CampaignArray({
- num? cpTotal,
- num? id,
- String? bannerName,
- String? banner,
- String? bannerFull,
- String? name,
- String? title,
- String? location,
- String? fromTimestamp,
- String? toTimestamp,
- String? fromDate,
- String? fromDateTime,
- String? toDate,
- String? toDateTime,
- String? isActive,
- String? isDeleted,
- num? createdAtToday,
- String? createdAt,
- String? createdTime,
- String? updatedAt,
- num? masterUserId,
- String? textColor,
- String? textPosition,
Implementation
CampaignArray({
num? cpTotal,
num? id,
String? bannerName,
String? banner,
String? bannerFull,
String? name,
String? title,
String? location,
String? fromTimestamp,
String? toTimestamp,
String? fromDate,
String? fromDateTime,
String? toDate,
String? toDateTime,
String? isActive,
String? isDeleted,
num? createdAtToday,
String? createdAt,
String? createdTime,
String? updatedAt,
String? campaignShareUrl,
num? masterUserId,
String? textColor,
String? textPosition,}){
_cpTotal = cpTotal;
_id = id;
_bannerName = bannerName;
_banner = banner;
_bannerFull = bannerFull;
_name = name;
_title = title;
_location = location;
_fromTimestamp = fromTimestamp;
_toTimestamp = toTimestamp;
_fromDate = fromDate;
_fromDateTime = fromDateTime;
_toDate = toDate;
_toDateTime = toDateTime;
_isActive = isActive;
_isDeleted = isDeleted;
_createdAtToday = createdAtToday;
_createdAt = createdAt;
_createdTime = createdTime;
_updatedAt = updatedAt;
_masterUserId = masterUserId;
_textColor = textColor;
_textPosition = textPosition;
_campaignShareUrl = campaignShareUrl;
}