v1SharedVoicesGetCategoryListToJson function
Implementation
List<String> v1SharedVoicesGetCategoryListToJson(
List<enums.V1SharedVoicesGetCategory>? v1SharedVoicesGetCategory) {
if (v1SharedVoicesGetCategory == null) {
return [];
}
return v1SharedVoicesGetCategory.map((e) => e.value!).toList();
}