removeEvaluator method
Removes the given goal evaluator from this instance.
Implementation
Think removeEvaluator(GoalEvaluator evaluator ) {
final index = evaluators.indexOf( evaluator );
evaluators.removeAt( index );
return this;
}
Removes the given goal evaluator from this instance.
Think removeEvaluator(GoalEvaluator evaluator ) {
final index = evaluators.indexOf( evaluator );
evaluators.removeAt( index );
return this;
}