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