FeedbackDataGeoPoint constructor

FeedbackDataGeoPoint({
  1. num? latitude,
  2. num? longitude,
  3. num? srid,
})

Returns a new FeedbackDataGeoPoint instance.

Implementation

FeedbackDataGeoPoint({
  this.latitude,
  this.longitude,
  this.srid,
});