put method

Style put(
  1. Attribute attribute
)

Implementation

Style put(Attribute attribute) {
  final m = Map<String, Attribute>.from(attributes);
  m[attribute.key] = attribute;
  return Style.attr(m);
}