intToStr method

String intToStr(
  1. int v
)

Implementation

String intToStr(int v) {
  return (v < 10) ? "0$v" : "$v";
}