toIntStr method

String toIntStr()

Implementation

String toIntStr() {
  final result = '$this';
  return result.length == 1 ? '0$result' : result;
}