maybeOf static method

AFormState? maybeOf(
  1. BuildContext context
)

Implementation

static AFormState? maybeOf(BuildContext context) {
  final _AFormScope? scope = context.dependOnInheritedWidgetOfExactType<_AFormScope>();
  return scope?.formState;
}