copyWith method

Implementation

WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatchResponse copyWith(
    {int? status,
    bool? success,
    String? msg,
    WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatch? batch,
    bool? autoProcessDepeletingDeposit}) {
  return WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatchResponse(
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg,
      batch: batch ?? this.batch,
      autoProcessDepeletingDeposit:
          autoProcessDepeletingDeposit ?? this.autoProcessDepeletingDeposit);
}