callShippingLabelApi method
void
callShippingLabelApi({})
Implementation
void callShippingLabelApi(
{String? apiKey,
String? token,
required Uint8List image,
required List<String> barcodes,
String? locationId,
Map<String, dynamic>? recipient,
Map<String, dynamic>? sender,
Map<String, dynamic>? options,
Map<String, dynamic>? metadata}) async {
await _channel.invokeMethod('callOCRAPI', {
'apiKey': apiKey,
'token': token,
'byteArrayImage': image,
'barcodes': barcodes,
'locationId': locationId,
'recipient': recipient,
'sender': sender,
'options': options,
'metadata': metadata
});
}