setTimeThreshold method

Future<void> setTimeThreshold(
  1. int threshold
)

Sets the time threshold in seconds. To take effect, must be used before calling start.

See also:

Implementation

Future<void> setTimeThreshold(int threshold) {
  return _setProperty('TimeThreshold', DBusUint32(threshold));
}