LoForm<TKey> constructor

const LoForm<TKey>({
  1. Key? key,
  2. ValMap<TKey>? initialValues,
  3. List<LoFormBaseValidator<TKey>>? validators,
  4. required SubmitFunc<TKey> onSubmit,
  5. ValueChanged<LoFormState<TKey>>? onChanged,
  6. ValueChanged<LoFormState<TKey>>? onReady,
  7. StatusCheckFunc? submittableWhen,
  8. required Widget builder(
    1. LoFormState<TKey>
    ),
})

Implementation

const LoForm({
  Key? key,
  this.initialValues,
  this.validators,
  required this.onSubmit,
  this.onChanged,
  this.onReady,
  this.submittableWhen,
  required this.builder,
}) : super(key: key);