Check whether the NFC reader is available on the device
@override Future<bool> isAvailable() async { final isAvailable = await methodChannel.invokeMethod<bool>('isAvailable'); return isAvailable ?? false; }