copyWith method

WebApiModulesUtilitiesReceiptProcessBatchReceiptProcessBatchRequest copyWith({
  1. String? officeLocationId,
  2. String? singleReceiptId,
  3. DateTime? fromDate,
  4. DateTime? toDate,
})

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,
  );
}