copyWith method
ProcessorBalanceGetRequest
copyWith({
- String? clientId,
- String? secret,
- String? processorToken,
- ProcessorBalanceGetRequestOptions? options,
Implementation
ProcessorBalanceGetRequest copyWith(
{String? clientId,
String? secret,
String? processorToken,
ProcessorBalanceGetRequestOptions? options}) {
return ProcessorBalanceGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
processorToken: processorToken ?? this.processorToken,
options: options ?? this.options);
}