LoTextField<TKey> constructor

const LoTextField<TKey>({
  1. Key? key,
  2. required TKey loKey,
  3. String? initialValue,
  4. List<LoFieldBaseValidator<String>>? validators,
  5. Duration? debounceTime,
  6. TextFieldProps? props,
})

Implementation

const LoTextField({
  Key? key,
  required this.loKey,
  this.initialValue,
  this.validators,
  this.debounceTime,
  this.props,
}) : super(key: key);