PostLocation constructor

PostLocation({
  1. double? lat,
  2. double? lng,
  3. String? name,
  4. String? span,
})

Implementation

PostLocation({
  this.lat,
  this.lng,
  this.name,
  this.span,
});