stopNfcScan method
Stops listening/scanning for NFC tags.
Implementation
Future<bool> stopNfcScan() async {
try {
final success = await _channel.invokeMethod<bool>('stopNfcScan');
return success ?? false;
} on PlatformException {
return false;
}
}