setStyle method

Tag setStyle(
  1. String property,
  2. String value
)

Implementation

Tag setStyle(String property, String value) {
  attrs['style'] = '${attrs['style'] ?? ''}$property: $value; ';
  return this;
}