copyWith method

DashboardUserListResponse copyWith({
  1. List<DashboardUser>? dashboardUsers,
  2. String? nextCursor,
  3. String? requestId,
})

Implementation

DashboardUserListResponse copyWith(
    {List<DashboardUser>? dashboardUsers,
    String? nextCursor,
    String? requestId}) {
  return DashboardUserListResponse(
      dashboardUsers: dashboardUsers ?? this.dashboardUsers,
      nextCursor: nextCursor ?? this.nextCursor,
      requestId: requestId ?? this.requestId);
}