copyWith method
IdentityMatchResponse
copyWith({
- List<
AccountIdentityMatchScore> ? accounts, - Item? item,
- String? requestId,
Implementation
IdentityMatchResponse copyWith(
{List<AccountIdentityMatchScore>? accounts,
Item? item,
String? requestId}) {
return IdentityMatchResponse(
accounts: accounts ?? this.accounts,
item: item ?? this.item,
requestId: requestId ?? this.requestId);
}