trackComputedStyleUpdatesForNode method

Future<void> trackComputedStyleUpdatesForNode({
  1. NodeId? nodeId,
})

Starts tracking the given node for the computed style updates and whenever the computed style is updated for node, it queues a computedStyleUpdated event with throttling. There can only be 1 node tracked for computed style updates so passing a new node id removes tracking from the previous node. Pass undefined to disable tracking.

Implementation

Future<void> trackComputedStyleUpdatesForNode({dom.NodeId? nodeId}) async {
  await _client.send('CSS.trackComputedStyleUpdatesForNode', {
    if (nodeId != null) 'nodeId': nodeId,
  });
}