KeyValueNotifer<K, V> constructor

KeyValueNotifer<K, V>(
  1. V value
)

Initialize this KeyValueNotifer with an AdvancedValueNotifier that is initialized with value.

Implementation

factory KeyValueNotifer(V value) =>
    KeyValueNotifer.withNotifier(AdvancedValueNotifier(value));