stopReading method

Future<void> stopReading()

Stops reading NFC tags.

Implementation

Future<void> stopReading() async {
  try {
    await _channel.invokeMethod('stopReading');
  } on PlatformException catch (e) {
    throw Exception('Failed to stop NFC read: ${e.message}');
  }
}