TurnServer constructor

const TurnServer({
  1. required String url,
  2. required String username,
  3. required String credential,
})

Creates a new TurnServer.

Implementation

const TurnServer({
  required this.url,
  required this.username,
  required this.credential,
});