webApiIncludeExcludeAllListFromJson function
Implementation
List<enums.WebApiIncludeExcludeAll> webApiIncludeExcludeAllListFromJson(
List? webApiIncludeExcludeAll) {
if (webApiIncludeExcludeAll == null) {
return [];
}
return webApiIncludeExcludeAll
.map((e) => webApiIncludeExcludeAllFromJson(e.toString()))
.toList();
}