onRunOneStep method

bool onRunOneStep(
  1. int i
)

Implementation

bool onRunOneStep(int i) {
  var runOneStep = (60 / doingStep) * (currentStep.value);
  if (i < runOneStep) {
    return true;
  } else {
    return false;
  }
}