toInt static method
Implementation
static int toInt(dynamic value) {
if (value == null) {
return 0;
}
return int.parse(value.toString());
}
static int toInt(dynamic value) {
if (value == null) {
return 0;
}
return int.parse(value.toString());
}