transferPrescriptions abstract method

Future<void> transferPrescriptions({
  1. Iterable<Uint8List>? images,
  2. Iterable<({Uint8List data, IaPrescriptionInsuranceType insuranceType})>? pdfs,
  3. Iterable<String>? codes,
  4. String? orderId,
})

Forwards the specified images, pdfs, or eRezept codes prescription collection to the ia.de backend.

Each PDF entry is a record containing the binary data and its IaPrescriptionInsuranceType.

Implementation

Future<void> transferPrescriptions({
  Iterable<Uint8List>? images,
  Iterable<({Uint8List data, IaPrescriptionInsuranceType insuranceType})>? pdfs,
  Iterable<String>? codes,
  String? orderId,
});