documentNameMatchCodeListFromJson function
List<DocumentNameMatchCode>
documentNameMatchCodeListFromJson(
- List? documentNameMatchCode, [
- List<
DocumentNameMatchCode> ? defaultValue
Implementation
List<enums.DocumentNameMatchCode> documentNameMatchCodeListFromJson(
List? documentNameMatchCode, [
List<enums.DocumentNameMatchCode>? defaultValue,
]) {
if (documentNameMatchCode == null) {
return defaultValue ?? [];
}
return documentNameMatchCode
.map((e) => documentNameMatchCodeFromJson(e.toString()))
.toList();
}