StaffGroup.strings constructor

StaffGroup.strings(
  1. List<Staff> staves
)

Factory: Create a string section group

Implementation

factory StaffGroup.strings(List<Staff> staves) {
  return StaffGroup(
    staves: staves,
    bracket: BracketType.bracket,
    name: 'Strings',
    abbreviation: 'Str.',
  );
}