CampaignDate constructor

CampaignDate({
  1. String? fromDate,
  2. String? fromDateTime,
  3. String? toDate,
  4. String? toDateTime,
})

Implementation

CampaignDate({
    String? fromDate,
    String? fromDateTime,
    String? toDate,
    String? toDateTime,}){
  _fromDate = fromDate;
  _fromDateTime = fromDateTime;
  _toDate = toDate;
  _toDateTime = toDateTime;
}