copyWith method

Implementation

WatchlistScreeningDocument copyWith(
    {enums.WatchlistScreeningDocumentType? type, String? number}) {
  return WatchlistScreeningDocument(
      type: type ?? this.type, number: number ?? this.number);
}