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