copyWith method

IdentityMatchResponse copyWith({
  1. List<AccountIdentityMatchScore>? accounts,
  2. Item? item,
  3. 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);
}