DebounceCallback typedef

DebounceCallback = void Function()

A void callback, i.e. (){}, so we don't need to import e.g. dart.ui just for the VoidCallback type definition.

Implementation

typedef DebounceCallback = void Function();