removeAttributes method

bool removeAttributes([
  1. List<String>? attributes = null
])

Implementation

bool removeAttributes([List<String>? attributes = null]) {
  if (attributes == null)
    this._attributes.clear();
  else {
    for (var attr in attributes) this.attributes.remove(attr);
  }

  return true;
}