Location constructor

Location({
  1. String? uuid,
  2. GeoCoordinates? geoCoordinates,
  3. Address? address,
  4. bool? active,
  5. String? gplaceId,
  6. int? version,
})

Implementation

Location({
  this.uuid,
  this.geoCoordinates,
  this.address,
  this.active,
  this.gplaceId,
  this.version,
});