maybeOf static method

ArgosTuningController? maybeOf(
  1. BuildContext context
)

Implementation

static ArgosTuningController? maybeOf(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<ArgosTuningScope>()
      ?.controller;
}