invert method

Map<V, K> invert()

Implementation

Map<V, K> invert() => map((key, value) => MapEntry(value, key));