of static method

Implementation

static IndicatorThemeData? of(BuildContext context) {
  final indicatorTheme =
      context.dependOnInheritedWidgetOfExactType<IndicatorTheme>();
  return indicatorTheme?.data;
}