SourceDescription constructor

const SourceDescription({
  1. String? title,
  2. String? composer,
  3. String? date,
  4. String? publisher,
  5. String? identifier,
})

Implementation

const SourceDescription({
  this.title,
  this.composer,
  this.date,
  this.publisher,
  this.identifier,
});