Manifestation constructor

const Manifestation({
  1. String? title,
  2. String? type,
  3. String? medium,
  4. String? date,
  5. String? location,
  6. String? identifier,
})

Implementation

const Manifestation({
  this.title,
  this.type,
  this.medium,
  this.date,
  this.location,
  this.identifier,
});