z static method

String z(
  1. int n
)

Implementation

static String z(int n) {
  if (n > 9) {
    return n.toString();
  }
  return "0$n";
}