copyWith method

Implementation

WebApiModulesUtilitiesVendorInvoiceProcessBatchVendorInvoiceProcessBatchResponse
    copyWith(
        {int? status,
        bool? success,
        String? msg,
        WebApiModulesUtilitiesVendorInvoiceProcessBatchVendorInvoiceProcessBatch?
            batch}) {
  return WebApiModulesUtilitiesVendorInvoiceProcessBatchVendorInvoiceProcessBatchResponse(
      status: status ?? this.status,
      success: success ?? this.success,
      msg: msg ?? this.msg,
      batch: batch ?? this.batch);
}