connect method

Future<Connection> connect()

Implementation

Future<Connection> connect() async {
  await _sendCmd(_DbConnectCmd.new);
  return Connection._(_commandPort);
}