How to debounce action in Flutter
Issue #293
Answer https://stackoverflow.com/a/55119208/1418457
This is useful to throttle TextField change event. You can make Debouncer class using Timer
import 'package:flutter/foundation.dart';
import 'dart:async';
class …
Written by