GeoShapeCentroid constructor

GeoShapeCentroid({
  1. required double latitude,
  2. required double longitude,
})

Returns a new GeoShapeCentroid instance.

Implementation

GeoShapeCentroid({
  required this.latitude,
  required this.longitude,
});