of static method
Implementation
static MinThemeData of(BuildContext context) {
final theme = maybeOf(context);
assert(theme != null, 'MinTheme not found in context');
return theme ?? MinThemeData.light();
}
static MinThemeData of(BuildContext context) {
final theme = maybeOf(context);
assert(theme != null, 'MinTheme not found in context');
return theme ?? MinThemeData.light();
}