copyWith method

Implementation

WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatchRequest copyWith(
    {String? locationId, DateTime? asOfDate}) {
  return WebApiModulesUtilitiesInvoiceProcessBatchInvoiceProcessBatchRequest(
      locationId: locationId ?? this.locationId,
      asOfDate: asOfDate ?? this.asOfDate);
}