ActiveList constructor

ActiveList({
  1. bool? pinned,
  2. String? clientId,
  3. int? streamId,
  4. bool? videomuted,
  5. String? name,
  6. String? videoaspectratio,
  7. String? mediatype,
})

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;
}