copyWith method

SandboxProcessorTokenCreateResponse copyWith({
  1. String? processorToken,
  2. String? requestId,
})

Implementation

SandboxProcessorTokenCreateResponse copyWith(
    {String? processorToken, String? requestId}) {
  return SandboxProcessorTokenCreateResponse(
      processorToken: processorToken ?? this.processorToken,
      requestId: requestId ?? this.requestId);
}