isHceSupported method
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;
}