documentAuthenticityMatchCodeListToJson function
List<String>
documentAuthenticityMatchCodeListToJson(
- List<
DocumentAuthenticityMatchCode> ? documentAuthenticityMatchCode
Implementation
List<String> documentAuthenticityMatchCodeListToJson(
List<enums.DocumentAuthenticityMatchCode>? documentAuthenticityMatchCode) {
if (documentAuthenticityMatchCode == null) {
return [];
}
return documentAuthenticityMatchCode
.map((e) => enums.$DocumentAuthenticityMatchCodeMap[e]!)
.toList();
}