asMap2 method

Map<K, T> asMap2()

Implementation

Map<K, T> asMap2() {
	var map2 = LinkedHashMap.fromEntries(this);
	return map2;
}