scanYourFaceID method

Future<void> scanYourFaceID()
override

Implementation

Future<void> scanYourFaceID() async {
  try {
    await _livenessCheckChannel.invokeMethod('scanfaceID');
    print('Method called in AppDelegate');
  } on PlatformException catch (e) {
    print("Failed to invoke method: '${e.message}'.");
  } catch (e) {
    print("catch an error = $e}");
  }
}