documentAuthenticityMatchCodeListToJson function

List<String> documentAuthenticityMatchCodeListToJson(
  1. List<DocumentAuthenticityMatchCode>? documentAuthenticityMatchCode
)

Implementation

List<String> documentAuthenticityMatchCodeListToJson(
    List<enums.DocumentAuthenticityMatchCode>? documentAuthenticityMatchCode) {
  if (documentAuthenticityMatchCode == null) {
    return [];
  }

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