write method

  1. @override
void write(
  1. GetPod get,
  2. SetPod set,
  3. SetSelf<T> setSelf,
  4. T 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, T value) =>
    setSelf(value);