CampaignArray constructor

CampaignArray({
  1. num? cpTotal,
  2. num? id,
  3. String? bannerName,
  4. String? banner,
  5. String? bannerFull,
  6. String? name,
  7. String? title,
  8. String? location,
  9. String? fromTimestamp,
  10. String? toTimestamp,
  11. String? fromDate,
  12. String? fromDateTime,
  13. String? toDate,
  14. String? toDateTime,
  15. String? isActive,
  16. String? isDeleted,
  17. num? createdAtToday,
  18. String? createdAt,
  19. String? createdTime,
  20. String? updatedAt,
  21. String? campaignShareUrl,
  22. num? masterUserId,
  23. String? textColor,
  24. 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;
}