copyWithWrapped method

DashboardUserGetRequest copyWithWrapped({
  1. Wrapped<String>? dashboardUserId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String?>? clientId,
})

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));
}