copyWithWrapped method
WatchlistScreeningDocument
copyWithWrapped({
- Wrapped<
WatchlistScreeningDocumentType> ? type, - Wrapped<
String> ? number,
Implementation
WatchlistScreeningDocument copyWithWrapped(
{Wrapped<enums.WatchlistScreeningDocumentType>? type,
Wrapped<String>? number}) {
return WatchlistScreeningDocument(
type: (type != null ? type.value : this.type),
number: (number != null ? number.value : this.number));
}