This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class WebRTCConfig { | |
static const Map<String, dynamic> mediaConstraints = { | |
'audio': true, | |
'video': { | |
'mandatory': { | |
'minWidth': '480', // Provide your own width, height and frame rate here | |
'minHeight': '640', | |
'minFrameRate': '30', | |
}, | |
'facingMode': 'user', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23.21.150.121:3478 | |
iphone-stun.strato-iphone.de:3478 | |
numb.viagenie.ca:3478 | |
s1.taraba.net:3478 | |
s2.taraba.net:3478 | |
stun.12connect.com:3478 | |
stun.12voip.com:3478 | |
stun.1und1.de:3478 | |
stun.2talk.co.nz:3478 | |
stun.2talk.com:3478 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:math' as math; | |
class Coord { | |
final double lat, lng; | |
Coord(this.lat, this.lng); | |
} | |
class GeolocationUtils { | |
///decode the google encoded string using Encoded Polyline Algorithm Format | |
/// for more info about the algorithm check https://developers.google.com/maps/documentation/utilities/polylinealgorithm |