onAttributeRemoved property

Stream<AttributeRemovedEvent> onAttributeRemoved

Fired when Element's attribute is removed.

Implementation

Stream<AttributeRemovedEvent> get onAttributeRemoved => _client.onEvent
    .where((event) => event.name == 'DOM.attributeRemoved')
    .map((event) => AttributeRemovedEvent.fromJson(event.parameters));