copyWith method
Implementation
WebApiModulesBillingBillingGetNextBillingWorksheetUsageDatesResponse
copyWith({
int? status,
bool? success,
String? msg,
DateTime? fromDate,
DateTime? toDate,
}) {
return WebApiModulesBillingBillingGetNextBillingWorksheetUsageDatesResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
fromDate: fromDate ?? this.fromDate,
toDate: toDate ?? this.toDate,
);
}