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