copyWithWrapped method

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

Implementation

WebApiModulesBillingBillingGetNextBillingWorksheetUsageDatesResponse
    copyWithWrapped(
        {Wrapped<int?>? status,
        Wrapped<bool?>? success,
        Wrapped<String?>? msg,
        Wrapped<DateTime?>? fromDate,
        Wrapped<DateTime?>? toDate}) {
  return WebApiModulesBillingBillingGetNextBillingWorksheetUsageDatesResponse(
      status: (status != null ? status.value : this.status),
      success: (success != null ? success.value : this.success),
      msg: (msg != null ? msg.value : this.msg),
      fromDate: (fromDate != null ? fromDate.value : this.fromDate),
      toDate: (toDate != null ? toDate.value : this.toDate));
}