Stylesheet.parseCss constructor

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

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}) =>
    CssParser(contents, url: url).parse();