setScoreThresholdAsync method

Future<void> setScoreThresholdAsync(
  1. double scoreThreshold
)

Implementation

Future<void> setScoreThresholdAsync(double scoreThreshold) async {
  await cvRunAsync0<void>(
      (callback) => cobjdetect.FaceDetectorYN_SetScoreThreshold_Async(
            ref,
            scoreThreshold,
            callback,
          ), (c) {
    return c.complete();
  });
}