copyWith method

WebApiModulesBillingBillingGetNextBillingWorksheetUsageDatesResponse copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. DateTime? fromDate,
  5. DateTime? toDate,
})

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,
  );
}