getBackgroundColors method

Future<GetBackgroundColorsResult> getBackgroundColors(
  1. NodeId nodeId
)

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);
}