setDistanceThreshold method

Future<void> setDistanceThreshold(
  1. int threshold
)

Sets the distance threshold in meters. To take effect, must be used before calling start. See also:

Implementation

//
/// See also:
///  * [distanceThreshold]
Future<void> setDistanceThreshold(int threshold) {
  return _setProperty('DistanceThreshold', DBusUint32(threshold));
}