isValidlyFilled property

bool get isValidlyFilled

Verifica se o compasso está corretamente preenchido.

Implementation

bool get isValidlyFilled {
  final ts = timeSignature;
  if (ts == null) return true; // Sem fórmula = sem validação
  return currentMusicalValue == ts.measureValue;
}