copyWith method
Implementation
CampaignDate copyWith({ String? fromDate,
String? fromDateTime,
String? toDate,
String? toDateTime,
}) => CampaignDate( fromDate: fromDate ?? _fromDate,
fromDateTime: fromDateTime ?? _fromDateTime,
toDate: toDate ?? _toDate,
toDateTime: toDateTime ?? _toDateTime,
);