# Problem To sort `GitHubIssue`s by their `updatedAt` field, descending: ```dart issues.sortedByCompare((issue) => issue.updatedAt, (a, b) => b.compareTo(a)); ``` This is inconvenient. # Solution Introduce a `sortedByDescending` helper: ```dart issues.sortedByDescending((issue) => issue.updatedAt); ```