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