Entry<T extends Info> constructor

Entry<T extends Info>(
  1. T info,
  2. dynamic value,
  3. EntryState _state
)

Builds a Entry

  • info: The entry info
  • value: The entry value
  • state: The entry state

Implementation

Entry(this.info, this.value, this._state);