of static method
Get the current PiThemeData from the context
Implementation
static PiThemeData of(BuildContext context) {
final _PiThemeInherited? theme =
context.dependOnInheritedWidgetOfExactType<_PiThemeInherited>();
return theme?.data ?? PiThemeData();
}