ViewerSessionIdentity constructor

const ViewerSessionIdentity({
  1. required String viewerId,
  2. required String roomName,
  3. String? playbackUrl,
  4. String? protocol,
  5. String? token,
  6. Map<String, dynamic> metadata = const {},
})

Implementation

const ViewerSessionIdentity({
  required this.viewerId,
  required this.roomName,
  this.playbackUrl,
  this.protocol,
  this.token,
  this.metadata = const {},
});