createRoom method

Future<void> createRoom(
  1. List<String> deviceIds
)

Host creates a room with the selected device identifiers (e.g., usernames or network IPs).

Implementation

Future<void> createRoom(List<String> deviceIds) {
  throw UnimplementedError('createRoom() has not been implemented.');
}