fromExisting static method

Future<Chrome> fromExisting(
  1. int port
)

Connects to an instance of Chrome with an open debug port.

Implementation

static Future<Chrome> fromExisting(int port) async =>
    _connect(Chrome._(port, ChromeConnection('localhost', port)));