transceive method
Sends the NfcA command to the tag.
This uses MifareClassic#transceive API on Android.
This is equivalent to obtaining via NfcA.from
this tag and calling NfcA#transceive
.
Implementation
Future<Uint8List> transceive({
required int data,
}) async {
return channel.invokeMethod('MifareClassic#transceive', {
'handle': _tag.handle,
'data': data,
}).then((value) => value!);
}