isOnColoredSurfaceOf static method
- BuildContext context
Retrieves the bool from the widget tree. This allows access to the current isOnColoredSurfaceOf @param context The BuildContext from which to retrieve the theme. @returns The bool associated with the current context.
Implementation
static bool isOnColoredSurfaceOf(BuildContext context) {
return InheritedModel.inheritFrom<OudsTheme>(context, aspect: OudsThemeAspect.onColoredSurface)?.onColoredSurface ?? false;
}