getGridHighlightObjectsForTest method

Future<Map<String, dynamic>> getGridHighlightObjectsForTest(
  1. List<NodeId> nodeIds
)

For Persistent Grid testing. nodeIds Ids of the node to get highlight object for. Returns: Grid Highlight data for the node ids provided.

Implementation

Future<Map<String, dynamic>> getGridHighlightObjectsForTest(
    List<dom.NodeId> nodeIds) async {
  var result = await _client.send('Overlay.getGridHighlightObjectsForTest', {
    'nodeIds': [...nodeIds],
  });
  return result['highlights'] as Map<String, dynamic>;
}