start method

void start()

Puts the flow in OmegaFlowState.running and calls onStart. Invoked by the manager (activate/switchTo).

Implementation

void start() {
  if (state == OmegaFlowState.running) return;
  state = OmegaFlowState.running;
  onStart();
}