mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
18 lines
399 B
Dart
18 lines
399 B
Dart
/// Call configuration
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class CallConfig {
|
|
final List<String> iceServers;
|
|
|
|
const CallConfig({
|
|
required this.iceServers,
|
|
});
|
|
|
|
/// Turn this call configuration into the right for the WebRTC plugin
|
|
Map<String, dynamic> get pluginConfig => {
|
|
"iceServers": iceServers.map((f) => {"url": f}).toList(),
|
|
"sdpSemantics": "unified-plan",
|
|
};
|
|
}
|