write method

  1. @override
void write(
  1. GetPod get,
  2. SetPod set,
  3. SetSelf<T> setSelf,
  4. V value,
)
override

When the pod receives a write with the given value, this method determines the outcome.

Implementation

@override
void write(GetPod get, SetPod set, SetSelf<T> setSelf, V value) =>
    _parent.write(get, set, setSelf, value);