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