isNfcSupported method

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

Checks if NFC is supported on the device.

Implementation

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