Geolocation constructor

Geolocation({
  1. required String type,
  2. required List<double> coordinates,
})

Implementation

Geolocation({
  required this.type,
  required this.coordinates,
});