maybeOf static method
Returns the TextStyle from the closest DefaultTextStyle ancestor,
or null if none exists.
Implementation
static TextStyle maybeOf(BuildContext context) {
final widget =
context.dependOnInheritedWidgetOfExactType<DefaultTextStyle>();
return widget?.style ?? const TextStyle();
}