sendReady method

Future<void> sendReady()

Implementation

Future<void> sendReady() async {
  if (remoteId == null) {
    throw Exception('Remote ID is not set');
  }
  await _adbConnection.sendMessage(AdbProtocol.generateReady(localId, remoteId!));
}