static List<int>? nullableIntMappedFromXmlList(String? value) => value?.toString().split(',').map((item) => int.parse(item)).toList();