of static method
Implementation
static ExpandableThemeDataNullable of(BuildContext context) {
final result =
context.dependOnInheritedWidgetOfExactType<ExpandableThemeOverride>();
assert(result != null, 'No ThemeInfo found in context');
return result!.data;
}