getComputedStyleForNode method
Returns the computed style for a DOM node identified by nodeId.
Implementation
Future<GetComputedStyleForNodeResult> getComputedStyleForNode(
dom.NodeId nodeId,
) async {
var result = await _client.send('CSS.getComputedStyleForNode', {
'nodeId': nodeId,
});
return GetComputedStyleForNodeResult.fromJson(result);
}