static String full2Num(int value) { final valueStr = value.toString(); if (valueStr.length >= 2) { return valueStr; } else { return '0$valueStr'; } }