Score constructor
const
Score({
- String? title,
- String? subtitle,
- String? composer,
- String? arranger,
- String? copyright,
- required List<
StaffGroup> staffGroups, - Map<
String, dynamic> metadata = const {}, - PageLayout? pageLayout,
Implementation
const Score({
this.title,
this.subtitle,
this.composer,
this.arranger,
this.copyright,
required this.staffGroups,
this.metadata = const {},
this.pageLayout,
});