spam property

  1. @override
bool spam
getter/setter pairoverride-getter

Allows reducing the number of updates delivered when the value is changed multiple times.

  • If spam is true, each change of the value will be added to the stream.
  • If spam is false, updates of the value are scheduled as micro tasks. New updates are not added until the last update has been delivered. Only the last set value will be delivered.

Implementation

@override
bool spam;