isHceSupported method

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

Checks if Host Card Emulation (HCE) is supported on the device.

Implementation

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