of static method

RulerThemeData? of(
  1. BuildContext context
)

Implementation

static RulerThemeData? of(BuildContext context) {
  final theme = context.dependOnInheritedWidgetOfExactType<RulerTheme>();
  return theme?.data;
}