nullableStringMappedFromXmlList static method
Implementation
static List<String>? nullableStringMappedFromXmlList(List<dynamic>? value) =>
value
?.map(
(element) => stringMappedFromXml(element as Map<String, dynamic>),
)
.toList();