documentDateOfBirthMatchCodeListToJson function
List<String>
documentDateOfBirthMatchCodeListToJson(
- List<
DocumentDateOfBirthMatchCode> ? documentDateOfBirthMatchCode
Implementation
List<String> documentDateOfBirthMatchCodeListToJson(
List<enums.DocumentDateOfBirthMatchCode>? documentDateOfBirthMatchCode) {
if (documentDateOfBirthMatchCode == null) {
return [];
}
return documentDateOfBirthMatchCode
.map((e) => enums.$DocumentDateOfBirthMatchCodeMap[e]!)
.toList();
}