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