isSmallerOrEqual method

Score isSmallerOrEqual(
  1. Score score
)

Implementation

Score isSmallerOrEqual(Score score) {
  return Score.str(
    '${toString()} <= ${toString(entity: score.entity, score: score.score)}',
  );
}