removeCustomAttribute method

void removeCustomAttribute(
  1. String key
)

Implementation

void removeCustomAttribute(String key) {
  if (!_validateCustomAttributeKey(key, false)) {
    return;
  }
  customAttributes[key] = null;
}