maybeControllerOf static method
Looks up the nearest enclosing GFormController, or null if none.
Implementation
static GFormController? maybeControllerOf(BuildContext context) {
return context
.dependOnInheritedWidgetOfExactType<_GFormScope>()
?.controller;
}