padZeroes method

String padZeroes(
  1. int numberLength
)

Implementation

String padZeroes(int numberLength) => padLeft(numberLength, '0');