debounceMs<R> method

  1. @visibleForTesting
  2. @protected
  3. @override
Future<R?> debounceMs<R>(
  1. Object tag,
  2. R func, {
  3. int ms = 200,
})
override

Implementation

@visibleForTesting
@protected
@override
Future<R?> debounceMs<R>(Object tag, R func, {int ms = 200}) =>
    super.debounceMs(tag, func, ms: ms);