addStyle method

void addStyle(
  1. String key,
  2. String value
)

Adds a single CSS-style attribute to the element.

Implementation

void addStyle(String key, String value) {
  _styles[key] = value;
}