copyWith method
DashboardUserListResponse
copyWith({
- List<
DashboardUser> ? dashboardUsers, - String? nextCursor,
- 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);
}