documentDateOfBirthMatchCodeListToJson function

List<String> documentDateOfBirthMatchCodeListToJson(
  1. List<DocumentDateOfBirthMatchCode>? documentDateOfBirthMatchCode
)

Implementation

List<String> documentDateOfBirthMatchCodeListToJson(
    List<enums.DocumentDateOfBirthMatchCode>? documentDateOfBirthMatchCode) {
  if (documentDateOfBirthMatchCode == null) {
    return [];
  }

  return documentDateOfBirthMatchCode
      .map((e) => enums.$DocumentDateOfBirthMatchCodeMap[e]!)
      .toList();
}