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