Score constructor

const Score({
  1. String? title,
  2. String? subtitle,
  3. String? composer,
  4. String? arranger,
  5. String? copyright,
  6. required List<StaffGroup> staffGroups,
  7. Map<String, dynamic> metadata = const {},
  8. PageLayout? pageLayout,
  9. MeiHeader? meiHeader,
  10. ScoreDefinition? scoreDefinition,
})

Implementation

const Score({
  this.title,
  this.subtitle,
  this.composer,
  this.arranger,
  this.copyright,
  required this.staffGroups,
  this.metadata = const {},
  this.pageLayout,
  this.meiHeader,
  this.scoreDefinition,
});