int? byInt(String key) { if (this[key] == null) return null; return double.parse(byString(key)!).toInt(); }