WorkInfo constructor

const WorkInfo({
  1. String? title,
  2. String? composer,
  3. String? opusNumber,
  4. String? key,
  5. String? tempo,
  6. String? meter,
  7. String? date,
  8. String? genre,
})

Implementation

const WorkInfo({
  this.title,
  this.composer,
  this.opusNumber,
  this.key,
  this.tempo,
  this.meter,
  this.date,
  this.genre,
});