mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
14 lines
237 B
Dart
14 lines
237 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
/// Call configuration
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class CallConfig {
|
|
final List<String> iceServers;
|
|
|
|
const CallConfig({
|
|
@required this.iceServers,
|
|
}) : assert(iceServers != null);
|
|
}
|