IFastInput constructor

IFastInput({
  1. required Duration debounceTimeDuration,
  2. bool shouldDebounceTime = false,
  3. bool isEnabled = true,
  4. ValueChanged<String>? onValueChanged,
})

Implementation

IFastInput({
  required this.debounceTimeDuration,
  this.shouldDebounceTime = false,
  this.isEnabled = true,
  this.onValueChanged,
});