HookFormScope constructor

const HookFormScope({
  1. Key? key,
  2. required Widget child,
  3. required FormErrorMessages messages,
})

Creates a HookFormScope instance.

Implementation

const HookFormScope({
  super.key,
  required super.child,
  required this.messages,
});