maybeOf static method

IdsTheme? maybeOf(
  1. BuildContext context
)

Implementation

static IdsTheme? maybeOf(BuildContext context) {
  final scope = IdsScope.maybeOf(context);
  if (scope == null) return null;
  return IdsTheme(color: scope.color, mode: scope.mode);
}