webApiIncludeExcludeAllExplodedListToJson function

String webApiIncludeExcludeAllExplodedListToJson(
  1. List<WebApiIncludeExcludeAll>? webApiIncludeExcludeAll
)

Implementation

String webApiIncludeExcludeAllExplodedListToJson(
  List<enums.WebApiIncludeExcludeAll>? webApiIncludeExcludeAll,
) {
  return webApiIncludeExcludeAll?.map((e) => e.value!).join(',') ?? '';
}