FormScope constructor

const FormScope({
  1. Key? key,
  2. required FormState formState,
  3. required Widget child,
})

Creates a FormScope that exposes formState to descendants.

Implementation

const FormScope({super.key, required this.formState, required super.child});