removeAttribute method

void removeAttribute(
  1. String name
)

Removes an attribute.

Implementation

void removeAttribute(String name) {
  operations.add({
    ATTRIBUTE_OPERATION_TYPE: ATTRIBUTE_OPERATION_REMOVE,
    ATTRIBUTE_OPERATION_KEY: name
  });
}