Clef constructor

Clef({
  1. ClefType clefType = ClefType.treble,
  2. int? staffPosition,
  3. String? type,
})

Implementation

Clef({
  ClefType clefType = ClefType.treble,
  this.staffPosition,
  String? type,
}) : _clefType = type == null ? clefType : clefTypeFromName(type);