copyWith method

ProcessorBalanceGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? processorToken,
})

Implementation

ProcessorBalanceGetRequest copyWith(
    {String? clientId, String? secret, String? processorToken}) {
  return ProcessorBalanceGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      processorToken: processorToken ?? this.processorToken);
}