getBackgroundColors method
nodeId
Id of the node to get background colors for.
Implementation
Future<GetBackgroundColorsResult> getBackgroundColors(
dom.NodeId nodeId) async {
var result = await _client.send('CSS.getBackgroundColors', {
'nodeId': nodeId,
});
return GetBackgroundColorsResult.fromJson(result);
}