setIoUThreshold method

Future<void> setIoUThreshold(
  1. double threshold
)

Sets the IoU threshold through the widget's state.

This method can be called using a GlobalKey to access the state.

Implementation

Future<void> setIoUThreshold(double threshold) {
  return _effectiveController.setIoUThreshold(threshold);
}