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