Debouncer class
A utility class for debouncing actions in Dart and Flutter applications.
Properties
Methods
-
cancel(
) → void - Cancels any active timer and clears the currently scheduled action.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
run(
VoidCallback action) → void -
Runs the provided
action
after a delay defined by delay. -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited