ActiveList constructor
ActiveList({})
Implementation
ActiveList({
bool? pinned,
String? clientId,
int? streamId,
bool? videomuted,
String? name,
String? videoaspectratio,
String? mediatype,
}) {
_pinned = pinned;
_clientId = clientId;
_streamId = streamId;
_videomuted = videomuted;
_name = name;
_videoaspectratio = videoaspectratio;
_mediatype = mediatype;
}