TurnCredentials constructor

const TurnCredentials({
  1. required List<String> urls,
  2. required String username,
  3. required String password,
})

Implementation

const TurnCredentials({
  required this.urls,
  required this.username,
  required this.password,
});