documentNameMatchCodeFromJson function
DocumentNameMatchCode
documentNameMatchCodeFromJson(
- Object? documentNameMatchCode, [
- DocumentNameMatchCode? defaultValue
Implementation
enums.DocumentNameMatchCode documentNameMatchCodeFromJson(
Object? documentNameMatchCode, [
enums.DocumentNameMatchCode? defaultValue,
]) {
if (documentNameMatchCode is String) {
return enums.$DocumentNameMatchCodeMap.entries
.firstWhere(
(element) =>
element.value.toLowerCase() ==
documentNameMatchCode.toLowerCase(),
orElse: () => const MapEntry(
enums.DocumentNameMatchCode.swaggerGeneratedUnknown, ''))
.key;
}
final parsedResult = defaultValue == null
? null
: enums.$DocumentNameMatchCodeMap.entries
.firstWhereOrNull((element) => element.value == defaultValue)
?.key;
return parsedResult ??
defaultValue ??
enums.DocumentNameMatchCode.swaggerGeneratedUnknown;
}