fromCss static method
Implementation
static Map<String, CSS3> fromCss(String css, OnCssParseError? onCssParseError) {
final declarations = parseExternalCss(css, onCssParseError);
Map<String, CSS3> styleMap = {};
declarations.forEach((key, value) {
styleMap[key] = cssToStyle(value);
});
return styleMap;
}