of static method

MixThemeData of(
  1. BuildContext context
)

Implementation

static MixThemeData of(BuildContext context) {
  final themeData =
      context.dependOnInheritedWidgetOfExactType<MixTheme>()?.data;

  assert(themeData != null, 'No MixTheme found in context');

  return themeData!;
}