diff --git a/lib/src/extension.dart b/lib/src/extension.dart index d155901..fb463c6 100644 --- a/lib/src/extension.dart +++ b/lib/src/extension.dart @@ -11,7 +11,7 @@ extension Sorted on Iterable { /// will perform the final sorting procedure. Defaults to [DefaultSortingStrategy]. /// Consider using [MergeSortingStrategy] if a stable sort is needed. List sorted( - List rules, { + List> rules, { SortingStrategy? sortingStrategy, }) { sortingStrategy ??= DefaultSortingStrategy();