getAll method

List<CssStyleValue> getAll(
  1. String property
)

Implementation

List<CssStyleValue> getAll(String property) {
  return List<CssStyleValue>.unmodifiable(
    _stylePropertyMapFor(this)[property] ?? const <CssStyleValue>[],
  );
}