asMap abstract method
Returns a read-only dart:core Map
This method can be used to interop between the dart:collection and the kt.dart world.
- Use iter to iterate over the elements of this KtMap using a for-loop
- Use KtMapExtensions.toMap to copy the map
Implementation
// ignore: comment_references
/// - Use [KtMapExtensions.toMap] to copy the map
Map<K, V> asMap();