v1SharedVoicesGetCategoryNullableListFromJson function
Implementation
List<enums.V1SharedVoicesGetCategory>?
v1SharedVoicesGetCategoryNullableListFromJson(
List? v1SharedVoicesGetCategory, [
List<enums.V1SharedVoicesGetCategory>? defaultValue,
]) {
if (v1SharedVoicesGetCategory == null) {
return defaultValue;
}
return v1SharedVoicesGetCategory
.map((e) => v1SharedVoicesGetCategoryFromJson(e.toString()))
.toList();
}