copyWith method

IdentityMatchRequestOptions copyWith({
  1. List<String>? accountIds,
})

Implementation

IdentityMatchRequestOptions copyWith({List<String>? accountIds}) {
  return IdentityMatchRequestOptions(
      accountIds: accountIds ?? this.accountIds);
}