updateDelay property

num get updateDelay

Gets or sets how long it waits before updating, in milliseconds. The default value is zero. Any new value must be a non-negative number.

Setting this property does not notify about any changed event.

Implementation

_i2.num get updateDelay => _i4.getProperty(
      this,
      'updateDelay',
    );
set updateDelay (num value)

Implementation

set updateDelay(_i2.num value) {
  _i4.setProperty(
    this,
    'updateDelay',
    value,
  );
}