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