stopScan method

Future<bool> stopScan()

Stops reading tags.

Implementation

Future<bool> stopScan() async {
  final bool? success = await _channel.invokeMethod('stopScan');
  return success ?? false;
}