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