Converts input and returns the result of the conversion.
input
@override String convert(double input) { if (input == double.infinity) return "Infinite"; return "Second-${max(0, input).round()}"; }