sendCommandRaw method

Future<Iso7816ResponseApdu> sendCommandRaw(
  1. Uint8List data
)

Sends the APDU to the tag.

This uses NFCISO7816Tag#sendCommand API on iOS.

Implementation

Future<Iso7816ResponseApdu> sendCommandRaw(Uint8List data) async {
  return channel.invokeMethod('Iso7816#sendCommandRaw', {
    'handle': _tag.handle,
    'data': data,
  }).then((value) => $GetIso7816ResponseApdu(Map.from(value)));
}