stringToIntConvertor static method
Implementation
static int stringToIntConvertor(input) {
return input != null ? double.parse(input).toInt() : 0;
}
static int stringToIntConvertor(input) {
return input != null ? double.parse(input).toInt() : 0;
}