mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
4 lines
116 B
Dart
4 lines
116 B
Dart
|
extension MapEntryListExtension<T, U> on Iterable<MapEntry<T, U>> {
|
||
|
Map<T, U> toMap() => Map.fromEntries(this);
|
||
|
}
|