isDeviceCheckSupported method

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

Returns true when Apple DCDevice is supported on this device.

Implementation

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