SessionController constructor

SessionController()

Implementation

SessionController()
    : super(
        AgoraSettings(
          engine: createAgoraRtcEngine(),
          agoraRtmChannel: null,
          agoraRtmClient: null,
          users: [],
          mainAgoraUser: AgoraUser(
            uid: 0,
            remote: true,
            muted: false,
            videoDisabled: false,
            clientRoleType: ClientRoleType.clientRoleBroadcaster,
          ),
          isLocalUserMuted: false,
          isLocalVideoDisabled: false,
          visible: true,
          clientRoleType: ClientRoleType.clientRoleBroadcaster,
          localUid: 0,
          generatedToken: null,
          generatedRtmId: null,
          layoutType: Layout.grid,
          displaySnackbar: false,
          muteRequest: MicState.unmuted,
          cameraRequest: CameraState.enabled,
          showMicMessage: false,
          showCameraMessage: false,
        ),
      );