maybeOf static method

Implementation

static LoadingThemeDataNullable? maybeOf(BuildContext context) {
  return context
      .dependOnInheritedWidgetOfExactType<LoadingThemeOverride>()
      ?.data;
}