LiteralTokenSource constructor
Initialize with fixed credentials.
- Parameters:
- serverUrl: The LiveKit server URL to connect to
- participantToken: The JWT token for participant authentication
- participantName: The display name for the participant (optional)
- roomName: The name of the room to join (optional)
Implementation
LiteralTokenSource({
required this.serverUrl,
required this.participantToken,
this.participantName,
this.roomName,
});