putAttribute method

void putAttribute(
  1. String name,
  2. String value
)

Sets a value as a string for the specified attribute. Updates the value of the attribute if a value had already existed.

Implementation

void putAttribute(String name, String value) {
  throw UnimplementedError('putAttribute() is not implemented');
}