double? getDouble(String tag) => !containsKey(tag) ? null : double.tryParse(this[tag].toString()) ?? getInt(tag)?.toDouble();