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