maybeOf static method

Implementation

static NomoNavigatorInformationProvider? maybeOf(BuildContext context) {
  final NomoNavigatorInformationProvider? result = context
      .dependOnInheritedWidgetOfExactType<NomoNavigatorInformationProvider>();
  return result;
}