addSystem abstract method
AppBuilder
addSystem(
- SystemDescriptor descriptor, {
- required ScheduleLabel schedule,
- List<
SystemDescriptor> after, - List<
SystemDescriptor> before, - RunCondition? runIf,
- SystemSet? inSet,
Registers descriptor in schedule.
runIf can skip a run.
inSet places the system in a SystemSet.
Implementation
AppBuilder addSystem(
SystemDescriptor descriptor, {
required ScheduleLabel schedule,
List<SystemDescriptor> after,
List<SystemDescriptor> before,
RunCondition? runIf,
SystemSet? inSet,
});