Option<T>.none constructor

const Option<T>.none()

Implementation

const Option.none()
    : _value = null,
      isSome = false;