timer property

ProTimer? timer

a timer is the version of a clock reported by the Stage Display API

Implementation

ProTimer? get timer {
  try {
    return parent?.sd?.timers.values.firstWhere((t) => t.name == name);
  } on StateError catch (_) {
    return null;
  }
}