isSupported static method

Future<bool> isSupported()

The value indicating whether the DeviceCheck API is available on the current device.

Implementation

static Future<bool> isSupported() async {
  return _channel.invokeMethod('isSupported').then((value) => value!);
}