transceive method
Sends the NfcF command to the tag.
This uses NfcF#transceive API on Android.
Implementation
Future<Uint8List> transceive({
required Uint8List data,
}) async {
return channel.invokeMethod('NfcF#transceive', {
'handle': _tag.handle,
'data': data,
}).then((value) => value!);
}