num? getNumValOr(String key) { if (this[key] is num) return this[key]; if (this[key] is String) return num.tryParse(this[key]); return null; }