FormEntry<T> constructor

const FormEntry<T>({
  1. required FormKey key,
  2. required Widget child,
  3. Validator<T>? validator,
})

Implementation

const FormEntry(
    {required FormKey super.key, required this.child, this.validator});