connect method

  1. @protected
Future<Room> connect([
  1. String? url
])

Connects room to url (or the checker's default URL) unless it is already connected.

Implementation

@protected
Future<Room> connect([String? url]) async {
  if (room.connectionState == ConnectionState.connected) {
    return room;
  }
  await room.connect(url ?? this.url, token, connectOptions: connectOptions);
  return room;
}