getCoordinates function

LatLng getCoordinates()

Implementation

LatLng getCoordinates() {
  final selected = _coordinates[_rand.nextInt(_coordinates.length)].split(',');
  return LatLng(double.parse(selected[0]), double.parse(selected[1]));
}