solmizationName property
String
get
solmizationName
Returns the fixed-of the solmization name of this pitch (of the, re, mi, fa, sol, la, si). Equivalent to the MEI v5 solmization system.
Implementation
String get solmizationName {
final idx = _stepToSolmIndex[step] ?? 0;
return _solmizationNames[idx];
}