stayQuiet method
Sends the Stay Quiet command to the tag.
This uses NFCISO15693Tag#stayQuiet API on iOS.
Implementation
Future<void> stayQuiet() async {
return channel.invokeMethod('Iso15693#stayQuiet', {
'handle': _tag.handle,
});
}
Sends the Stay Quiet command to the tag.
This uses NFCISO15693Tag#stayQuiet API on iOS.
Future<void> stayQuiet() async {
return channel.invokeMethod('Iso15693#stayQuiet', {
'handle': _tag.handle,
});
}