set<T, V> method

void set<T, V>(
  1. WritablePodBase<T, V> pod,
  2. V value
)

Set the state of a WritablePod.

Implementation

void set<T, V>(WritablePodBase<T, V> pod, V value) =>
    pod.write(get, set, _ensureNode(pod).setValue, value);