Future<R?> debounceMs<R>( Object tag, R func, { int ms = 200, }) => slowly.debounce( tag, func, duration: Duration(milliseconds: ms), );