defaultStunServers constant

List<({String host, int port})> const defaultStunServers

Default list of STUN servers to use

Implementation

static const List<({String host, int port})> defaultStunServers = [
  (host: 'stun.l.google.com', port: 19302),
  (host: 'stun1.l.google.com', port: 19302),
  (host: 'stun2.l.google.com', port: 19302),
  (host: 'stun3.l.google.com', port: 19302),
  (host: 'stun4.l.google.com', port: 19302)
];