removeAttributeDeeply method

bool removeAttributeDeeply(
  1. String attributeName
)

Implementation

bool removeAttributeDeeply(String attributeName) {
  attributeName = attributeName.toLowerCase().trim();
  if (attributeName.isEmpty) return false;

  return _removeAttributeDeeplyImp(attributeName);
}