Member property

T? Member
Public accessor for the lazy member. Lazy initializes the member on first access

Implementation

T? get Member {
  if (!this._initialized) {
    this._lazyMember = this._initializationDelegate();
    this._initialized = true;
  }
  return this._lazyMember;
}