Place constructor

const Place({
  1. required String id,
  2. @Default.new(null) String? rev,
  3. @Default.new(null) int? deletionDate,
  4. @Default.new(null) String? name,
  5. @Default.new(null) DecryptedAddress? address,
})

Implementation

const factory Place({
	required String id,
	@Default(null) String? rev,
	@Default(null) int? deletionDate,
	@Default(null) String? name,
	@Default(null) DecryptedAddress? address,
}) = _Place;