reset method

void reset()

Notifies the Lazy object that something that was used in the init function has been changed and it needs to re-initialize next time it tries to get the value.

Implementation

void reset() {
  _isValueCreated = false;
}