|
|
|
@ -71,8 +71,7 @@ class ActivityRoleModel {
|
|
|
|
other.role == role &&
|
|
|
|
other.role == role &&
|
|
|
|
other.finishedAt == finishedAt &&
|
|
|
|
other.finishedAt == finishedAt &&
|
|
|
|
other.archivedAt == archivedAt &&
|
|
|
|
other.archivedAt == archivedAt &&
|
|
|
|
other.id == id &&
|
|
|
|
other.id == id;
|
|
|
|
other.dismissedGoalTooltip == dismissedGoalTooltip;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
@ -81,6 +80,5 @@ class ActivityRoleModel {
|
|
|
|
role.hashCode ^
|
|
|
|
role.hashCode ^
|
|
|
|
(finishedAt?.hashCode ?? 0) ^
|
|
|
|
(finishedAt?.hashCode ?? 0) ^
|
|
|
|
(archivedAt?.hashCode ?? 0) ^
|
|
|
|
(archivedAt?.hashCode ?? 0) ^
|
|
|
|
id.hashCode ^
|
|
|
|
id.hashCode;
|
|
|
|
dismissedGoalTooltip.hashCode;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|