v1SharedVoicesGetCategoryExplodedListToJson function

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

Implementation

String v1SharedVoicesGetCategoryExplodedListToJson(
    List<enums.V1SharedVoicesGetCategory>? v1SharedVoicesGetCategory) {
  return v1SharedVoicesGetCategory?.map((e) => e.value!).join(',') ?? '';
}