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