copyWith method

Implementation

WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchRequest copyWith(
    {String? officeLocationId, DateTime? fromDate, DateTime? toDate}) {
  return WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchRequest(
      officeLocationId: officeLocationId ?? this.officeLocationId,
      fromDate: fromDate ?? this.fromDate,
      toDate: toDate ?? this.toDate);
}