cloneMapTyped<K, V> method
Clones a map with typed values, producing a new map with keys and cloned values.
Both keys and values are cloned according to the cloner's rules.
The resulting map preserves the type parameters K and V.
Implementation
@override
Map<K, V> cloneMapTyped<K, V>(Map<K, V> source) {
_log(
'cloneMapTyped<$K, $V>: length=${source.length}, type=${source.runtimeType}',
);
return super.cloneMapTyped<K, V>(source);
}