Stylesheet.parseCss constructor

Stylesheet.parseCss(
  1. String contents, {
  2. Object? url,
  3. Logger? logger,
})

Parses a plain CSS stylesheet from contents.

If passed, url is the name of the file from which contents comes.

Throws a SassFormatException if parsing fails.

Implementation

factory Stylesheet.parseCss(String contents, {Object? url, Logger? logger}) =>
    CssParser(contents, url: url, logger: logger).parse();