stayQuiet method

Future<void> stayQuiet()

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,
  });
}