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