onAttributeRemoved property

Stream<AttributeRemovedEvent> onAttributeRemoved

Implementation

Stream<AttributeRemovedEvent> get onAttributeRemoved => eventStream(
    'DOM.attributeRemoved',
    (WipEvent event) => AttributeRemovedEvent(event.json));