timeSignature property

TimeSignature? get timeSignature

Returns the active time signature for this measure.

Implementation

TimeSignature? get timeSignature {
  for (final element in elements) {
    if (element is TimeSignature) {
      return element;
    }
  }
  return null;
}