documentNameMatchCodeListToJson function
Implementation
List<String> documentNameMatchCodeListToJson(
List<enums.DocumentNameMatchCode>? documentNameMatchCode) {
if (documentNameMatchCode == null) {
return [];
}
return documentNameMatchCode
.map((e) => enums.$DocumentNameMatchCodeMap[e]!)
.toList();
}