copyWith method

ProcessorBalanceGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? processorToken,
  4. 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);
}