dependencies method Null safety
override
Implementation
@override
void dependencies() {
Get
..put(RunWorkflowController(), permanent: true)
..put(RunOdometerController(), permanent: true)
..put(SyncModelController<RunLocation>())
..put(SyncModelController<SplitTime>())
..put(SyncModelController<Run>())
..put(SyncModelController<RunFile>())
..put(RunLocationController(), permanent: true)
..put(RunFileUploadService(), permanent: true)
..put(RunResultController(), permanent: true)
// Listeners in order
..put(RunInitClearRunLocations())
..put(RunInitCreateRun())
..put(RunInitStartLocationUpdates())
..put(RunStoppedFinalizeRun())
..put(RunStoppedStopLocationUpdates())
..put(RunStoppedCreateRunFile())
..put(RunStoppedDestroyLocationUpdates());
}