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