Files
workavia-mail-front/labels/lib/extensions/list_label_extension.dart
T
2026-01-19 11:34:43 +07:00

13 lines
356 B
Dart

import 'package:collection/collection.dart';
import 'package:labels/extensions/label_extension.dart';
import 'package:labels/model/label.dart';
extension ListLabelExtension on List<Label> {
void sortByAlphabetically() {
sortByCompare<Label>(
(label) => label,
(label, otherLabel) => label.compareAlphabetically(otherLabel),
);
}
}