MeetingInfo constructor

MeetingInfo({
  1. String? meetingID,
  2. String? meetingName,
  3. String? hostUserID,
  4. int? createTime,
  5. int? startTime,
  6. int? endTime,
  7. bool? participantCanEnableVideo,
  8. bool? onlyHostInviteUser,
  9. bool? joinDisableVideo,
  10. bool? participantCanUnmuteSelf,
  11. bool? isMuteAllMicrophone,
  12. List<String>? inviteeUserIDList,
})

Implementation

MeetingInfo(
    {this.meetingID,
    this.meetingName,
    this.hostUserID,
    this.createTime,
    this.startTime,
    this.endTime,
    this.participantCanEnableVideo,
    this.onlyHostInviteUser,
    this.joinDisableVideo,
    this.participantCanUnmuteSelf,
    this.isMuteAllMicrophone,
    this.inviteeUserIDList});