Checks if NFC is supported on the device.
@override Future<bool> isNfcSupported() async { final bool? result = await methodChannel.invokeMethod<bool>( 'isNfcSupported', ); return result ?? false; }