isAppAttestSupported method

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

Returns true when Apple App Attest is supported on this device (iOS 14+ on devices with the Secure Enclave).

Implementation

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