abstract fun getOrElse(@Nullable defaultValue: A?): A
Returns value stored in Just or default value in case of Nothing.
defaultValue - A?: This value will be returned in case of Nothing.
Return
A: Value stored in the Just or value passed to this method in case of Nothing.