isAvailable method

  1. @override
Future<bool> isAvailable()
override

Check whether the NFC reader is available on the device

Implementation

@override
Future<bool> isAvailable() async {
  final isAvailable = await methodChannel.invokeMethod<bool>('isAvailable');
  return isAvailable ?? false;
}