stringify method

String stringify(
  1. int number
)

Implementation

String stringify(int number) => number < 10 ? "0$number" : number.toString();