copyWithWrapped method
Implementation
IdentityMatchResponse copyWithWrapped(
{Wrapped<List<AccountIdentityMatchScore>>? accounts,
Wrapped<Item>? item,
Wrapped<String>? requestId}) {
return IdentityMatchResponse(
accounts: (accounts != null ? accounts.value : this.accounts),
item: (item != null ? item.value : this.item),
requestId: (requestId != null ? requestId.value : this.requestId));
}