We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a51a5d8 commit c7237b4Copy full SHA for c7237b4
1 file changed
lib/utils/bloc_transformer.dart
@@ -5,7 +5,7 @@ import 'package:rxdart/rxdart.dart';
5
Stream<T> Function(Stream<T>, Stream<T> Function(T)) getDebounce<T>() {
6
return (Stream<T> events, Stream<T> Function(T) mapper) {
7
return events
8
- .debounceTime(const Duration(milliseconds: 200))
+ .debounceTime(const Duration(milliseconds: 100))
9
.switchMap(mapper);
10
};
11
}
0 commit comments