1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-04-21 07:11:59 +02:00
nc-photos/lib/list_extension.dart

4 lines
117 B
Dart
Raw Normal View History

2021-04-10 12:28:12 +08:00
extension ListExtension<T> on List<T> {
Iterable<T> takeIndex(List<int> indexes) => indexes.map((e) => this[e]);
}