removeAttribute method

Future<void> removeAttribute(
  1. int nodeId,
  2. String name
)

Implementation

Future<void> removeAttribute(int nodeId, String name) =>
    sendCommand('DOM.removeAttribute',
        params: {'nodeId': nodeId, 'name': name});