stopNfcSession static method

Future<bool?> stopNfcSession()

Implementation

static Future<bool?> stopNfcSession() async {
  final bool sessionStarted = await _channel.invokeMethod("stopNfcSession");
  return sessionStarted;
}