stopReading method
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}');
}
}