reset method

void reset()

Implementation

void reset() {
  if (_sync != null) {
    // coverage:ignore-start
    throw ArgumentError('Don\'t reset values that are currently synced.');
    // coverage:ignore-end
  } else {
    value = _seed;
  }
}