removeEvaluator method

Think removeEvaluator(
  1. GoalEvaluator evaluator
)

Removes the given goal evaluator from this instance.

Implementation

Think removeEvaluator(GoalEvaluator evaluator ) {
	final index = evaluators.indexOf( evaluator );
	evaluators.removeAt( index );
	return this;
}