get method

CssStyleValue get(
  1. String property
)

Implementation

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