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