Map<K, V> constructor

const Map<K, V>(
  1. Cast<K> key,
  2. Cast<V?> value
)

Implementation

const Map(Cast<K> key, Cast<V?> value)
    : _key = key,
      _value = value;