copyWith method

DashboardUserGetRequest copyWith({
  1. String? dashboardUserId,
  2. String? secret,
  3. String? clientId,
})

Implementation

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