get method
Implementation
CssStyleValue get(String property) {
final values = _stylePropertyMapFor(this)[property];
return values == null || values.isEmpty
? _StringCssStyleValue('')
: values.first;
}
CssStyleValue get(String property) {
final values = _stylePropertyMapFor(this)[property];
return values == null || values.isEmpty
? _StringCssStyleValue('')
: values.first;
}