isCompound property
bool
get
isCompound
Checks if is a tempo composto. Examples: 6/8, 9/8, 12/8
Implementation
bool get isCompound => !isFreeTime && !isSimple && numerator > 3;
Checks if is a tempo composto. Examples: 6/8, 9/8, 12/8
bool get isCompound => !isFreeTime && !isSimple && numerator > 3;