v1SharedVoicesGetCategoryListToJson function

List<String> v1SharedVoicesGetCategoryListToJson(
  1. List<V1SharedVoicesGetCategory>? v1SharedVoicesGetCategory
)

Implementation

List<String> v1SharedVoicesGetCategoryListToJson(
    List<enums.V1SharedVoicesGetCategory>? v1SharedVoicesGetCategory) {
  if (v1SharedVoicesGetCategory == null) {
    return [];
  }

  return v1SharedVoicesGetCategory.map((e) => e.value!).toList();
}