clock property

ProClock? clock

Implementation

ProClock? get clock {
  try {
    return parent?.remote?.clocks.firstWhere((c) => c.name == name);
  } on StateError {
    return null;
  }
}