Get a map inside a map
Map<String, dynamic>? get(String key) { var v = this[key]; if (v == null) { return null; } return v; }