of static method

Returns the FormErrorMessages instance from the nearest HookFormScope.

Implementation

static FormErrorMessages of(BuildContext context) {
  return context
          .dependOnInheritedWidgetOfExactType<HookFormScope>()
          ?.messages ??
      const FormErrorMessages();
}