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,
})

Implementation

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