Place constructor

Place({
  1. PlaceEmbedded? embedded,
  2. PlaceLinks? links,
  3. PlacePostalAddress? address,
  4. String? branchCode,
  5. DateTime? createdAt,
  6. String? description,
  7. String? id,
  8. required String name,
  9. PlacePreferences? preferences,
  10. String? type,
  11. DateTime? updatedAt,
})

Returns a new Place instance.

Implementation

Place({
  this.embedded,
  this.links,
  this.address,
  this.branchCode,
  this.createdAt,
  this.description,
  this.id,
  required this.name,
  this.preferences,
  this.type,
  this.updatedAt,
});