func resumeAllRemoteVideosInCurrentPageExceptUserPausedVideos()

in AmazonChimeSDKDemo/AmazonChimeSDKDemo/VideoModel.swift [368:374]


    func resumeAllRemoteVideosInCurrentPageExceptUserPausedVideos() {
        for remoteVideoTileState in remoteVideoStatesInCurrentPage {
            if !userPausedVideoTileIds.contains(remoteVideoTileState.0) {
                audioVideoFacade.resumeRemoteVideoTile(tileId: remoteVideoTileState.0)
            }
        }
    }