createRoom method

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

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

Implementation

@override
Future<void> createRoom(List<String> deviceIds) async {
  await methodChannel.invokeMethod('createRoom', {'deviceIds': deviceIds});
}