fromString static method

CssTheme fromString(
  1. String cssContent
)

Load CSS theme from string

Implementation

static CssTheme fromString(String cssContent) {
  final stylesheet = CssStylesheet.parse(cssContent);
  return CssTheme._(stylesheet);
}