PlaceDto constructor
PlaceDto({
- required String id,
- String? rev,
- int? deletionDate,
- String? name,
- AddressDto? address,
Returns a new PlaceDto instance.
Implementation
PlaceDto({
required this.id,
this.rev,
this.deletionDate,
this.name,
this.address,
});