copyWith method
IdentityMatchRequest
copyWith({
- String? clientId,
- String? secret,
- String? accessToken,
- IdentityMatchUser? user,
- IdentityMatchRequestOptions? options,
Implementation
IdentityMatchRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
IdentityMatchUser? user,
IdentityMatchRequestOptions? options}) {
return IdentityMatchRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
user: user ?? this.user,
options: options ?? this.options);
}