PlaceDto constructor

PlaceDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. String? name,
  5. AddressDto? address,
})

Returns a new PlaceDto instance.

Implementation

PlaceDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.name,
  this.address,
});