Stylesheet.parseSass constructor

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

Parses an indented-syntax 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.parseSass(String contents, {Object? url}) =>
    SassParser(contents, url: url).parse();