IFastInput constructor

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

Implementation

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