KeyAndValue<K extends Object, V> constructor

const KeyAndValue<K extends Object, V>(
  1. K key,
  2. V value,
  3. Type type
)

Construct a KeyAndValue with key and key.

Implementation

const KeyAndValue(this.key, this.value, this.type);