isSupportProfile static method

Future<bool> isSupportProfile()

Checks whether the device supports account verification.

Implementation

static Future<bool> isSupportProfile() async {
  final bool? result = await _methodChannel.invokeMethod(
    'isSupportProfile',
  );
  return result!;
}