resolveOf static method

M3EThemeData? resolveOf(
  1. BuildContext context
)

Resolves theme from the nearest scope, or null when none is present.

Implementation

static M3EThemeData? resolveOf(BuildContext context) {
  return maybeOf(context)?.resolve(context);
}