analyze function
void
analyze(
- List<
StyleSheet> styleSheets, { - List<
Message> ? errors, - PreprocessorOptions? options,
Analyze the CSS file.
Implementation
void analyze(List<StyleSheet> styleSheets,
{List<Message>? errors, PreprocessorOptions? options}) {
_createMessages(errors: errors, options: options);
Analyzer(styleSheets, messages).run();
}