addStyle method

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

Implementation

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