JMapEntry<K, V> constructor

JMapEntry<K, V>(
  1. K key,
  2. V value
)

Creates an entry with key and value.

Implementation

JMapEntry(this.key, this.value);