onAttributeModified property

Stream<AttributeModifiedEvent> onAttributeModified

Fired when Element's attribute is modified.

Implementation

Stream<AttributeModifiedEvent> get onAttributeModified => _client.onEvent
    .where((event) => event.name == 'DOM.attributeModified')
    .map((event) => AttributeModifiedEvent.fromJson(event.parameters));