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