copyWithWrapped method
Implementation
DashboardUserGetRequest copyWithWrapped(
{Wrapped<String>? dashboardUserId,
Wrapped<String?>? secret,
Wrapped<String?>? clientId}) {
return DashboardUserGetRequest(
dashboardUserId: (dashboardUserId != null
? dashboardUserId.value
: this.dashboardUserId),
secret: (secret != null ? secret.value : this.secret),
clientId: (clientId != null ? clientId.value : this.clientId));
}