copyWith method
IdentityGetRequest
copyWith({
- String? clientId,
- String? secret,
- String? accessToken,
- IdentityGetRequestOptions? options,
Implementation
IdentityGetRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
IdentityGetRequestOptions? options}) {
return IdentityGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
options: options ?? this.options);
}