BehaviorType enum

Specifies the behavior type for debouncing or throttling function calls.

The BehaviorType enum is used to define how function calls are handled within the context of debouncing or throttling mechanisms. It provides options for specifying when and how the callback function is executed.

  • BehaviorType.trailingEdge : The callback function is executed after the specified duration has passed without any new calls.
  • BehaviorType.leadingEdge : The callback function is executed immediately on the first call, and subsequent calls within the specified duration are ignored.
  • BehaviorType.leadingAndTrailing : The callback function is executed both on the leading and trailing edges of the timer. It is invoked immediately on the first call and after the specified duration has passed without any new calls.
Inheritance
Available extensions

Values

trailingEdge → const BehaviorType

The callback function is executed after the specified duration has passed without any new calls.

leadingEdge → const BehaviorType

The callback function is executed immediately on the first call, and subsequent calls within the specified duration are ignored.

leadingAndTrailing → const BehaviorType

The callback function is executed both on the leading and trailing edges of the timer. It is invoked immediately on the first call and after the specified duration has passed without any new calls.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<BehaviorType>
A constant List of the values in this enum, in order of their declaration.