of static method

MinThemeData of(
  1. BuildContext context
)

Implementation

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