factory NestedMetadata.fromMap(Map<String, dynamic> map) { return NestedMetadata( key: map['key'] as String, list: List<String>.from(map['list'] as List), ); }