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