get value as int
int? getInt(String i) { final data = map[i]; if (data == null) return null; return data.first.toInt(); }