1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 09:48:53 +01:00
nc-photos/lib/list_extension.dart
2021-11-25 21:02:42 +08:00

3 lines
117 B
Dart

extension ListExtension<T> on List<T> {
Iterable<T> takeIndex(List<int> indexes) => indexes.map((e) => this[e]);
}