calculateScore method

dynamic calculateScore(
  1. dynamic result
)

calculateScore calculates the score for an ActivityStep.

All classes extending ActivityStep override this with their own scoring algorithm.

Implementation

calculateScore(dynamic result) {
  return 0;
}