LoField<TKey, TValue> constructor

const LoField<TKey, TValue>({
  1. Key? key,
  2. required TKey loKey,
  3. TValue? initialValue,
  4. List<LoFieldBaseValidator<TValue>>? validators,
  5. Duration? debounceTime,
  6. required Widget builder(
    1. LoFieldState<TKey, TValue>
    ),
})

Implementation

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