Stylesheet.parseScss constructor

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

Parses an SCSS 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.parseScss(String contents, {Object? url}) =>
    ScssParser(contents, url: url).parse();