Parse Integer
static int getInt(dynamic data, int defaultValue) { if (data == null) { return defaultValue; } return int.parse(data.toString()); }