webApiIncludeExcludeAllFromJson function
WebApiIncludeExcludeAll
webApiIncludeExcludeAllFromJson(
- Object? webApiIncludeExcludeAll, [
- WebApiIncludeExcludeAll? defaultValue
Implementation
enums.WebApiIncludeExcludeAll webApiIncludeExcludeAllFromJson(
Object? webApiIncludeExcludeAll, [
enums.WebApiIncludeExcludeAll? defaultValue,
]) {
return enums.WebApiIncludeExcludeAll.values
.firstWhereOrNull((e) => e.value == webApiIncludeExcludeAll) ??
defaultValue ??
enums.WebApiIncludeExcludeAll.swaggerGeneratedUnknown;
}