Stylesheet.parseSass constructor
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();