static List<String>? nullableStringMappedFromXmlList(List<dynamic>? value) => value?.map((element) => stringMappedFromXml(element)).toList();