Rounds to the nearest multiple.
multiple
27.roundToMultiple(5); // 25 28.roundToMultiple(5); // 30
num roundToMultiple(num multiple) => (this / multiple).round() * multiple;