NEStartRoomParams constructor

NEStartRoomParams({
  1. String? roomId,
  2. required String displayName,
  3. String? password,
  4. String? tag,
  5. String? extraData,
  6. List<NERoomControl>? controls,
  7. Map<String, NEMeetingRoleType>? roleBinds,
})

Implementation

NEStartRoomParams({
  String? roomId,
  required String displayName,
  String? password,
  String? tag,
  this.extraData,
  this.controls,
  this.roleBinds,
}) : super(
        roomId: roomId,
        displayName: displayName,
        password: password,
        tag: tag,
      );