timingOf method

SystemTiming? timingOf(
  1. SystemLabel system,
  2. ScheduleLabel schedule
)

The timing record for system in schedule, or null if that pair has not run yet.

Implementation

SystemTiming? timingOf(SystemLabel system, ScheduleLabel schedule) =>
    _timings[system]?[schedule];