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