of static method

Returns the data most closely associated with the given context.

Implementation

static PlaceholderSetting? of(BuildContext context) {
  final result = context.dependOnInheritedWidgetOfExactType<PlaceholderTextTheme>();
  return result?.setting;
}