copyWithWrapped method

IdentityMatchRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? accessToken,
  4. Wrapped<IdentityMatchUser?>? user,
  5. Wrapped<IdentityMatchRequestOptions?>? options,
})

Implementation

IdentityMatchRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<String>? accessToken,
    Wrapped<IdentityMatchUser?>? user,
    Wrapped<IdentityMatchRequestOptions?>? options}) {
  return IdentityMatchRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      accessToken:
          (accessToken != null ? accessToken.value : this.accessToken),
      user: (user != null ? user.value : this.user),
      options: (options != null ? options.value : this.options));
}