NECreateRoomParams constructor

NECreateRoomParams({
  1. required String roomUuid,
  2. required String roomName,
  3. required int templateId,
  4. int? maxMembers,
  5. String? password,
  6. NESeatInitParams? seatInitParams,
  7. Map<String, String>? initialRoomProperties,
  8. NERoomProfile? roomProfile,
})

Implementation

NECreateRoomParams({
  required this.roomUuid,
  required this.roomName,
  required this.templateId,
  this.maxMembers,
  this.password,
  this.seatInitParams,
  this.initialRoomProperties,
  this.roomProfile,
});