WeeDebouncer class

Constructors

WeeDebouncer()

Properties

hashCode int
The hash code for this object.
no setterinherited
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

Static Methods

debounce(void callback(), {Duration duration = const Duration(milliseconds: 500)}) → void
Debounces the specified callback until the specified duration has elapsed.
executeOnce(void callback(), {Duration duration = const Duration(milliseconds: 500)}) → void
Executes the specified callback immediately, and then debounces subsequent calls to the same function until the specified duration has elapsed.