ICEServerResponse constructor

ICEServerResponse({
  1. required String password,
  2. List<String> urls = const [],
  3. required String username,
})

Returns a new ICEServerResponse instance.

Implementation

ICEServerResponse({
  required this.password,
  this.urls = const [],
  required this.username,
});