setIoUThreshold method

Future<void> setIoUThreshold(
  1. double threshold
)

Implementation

Future<void> setIoUThreshold(double threshold) async {
  _iouThreshold = threshold.clamp(0.0, 1.0);
  await _invoke('setIoUThreshold', {'threshold': _iouThreshold});
}