isCheckImageQualityEnabled method

Future<bool> isCheckImageQualityEnabled()

Checks if the image quality check is enabled.

Implementation

Future<bool> isCheckImageQualityEnabled() async {
  final response =
      await invokeNativeMethod('SmartfaceMobile.getCheckImageQualityEnabled');

  if (response.isLeft()) {
    return false;
  }

  return response.asRight;
}