TokenSourceResponse constructor

const TokenSourceResponse({
  1. required String serverUrl,
  2. required String participantToken,
  3. String? participantName,
  4. String? roomName,
})

Implementation

const TokenSourceResponse({
  required this.serverUrl,
  required this.participantToken,
  this.participantName,
  this.roomName,
});