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