copyWith method

Implementation

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