copyWithWrapped method

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));
}