Ok<T> constructor

Ok<T>(
  1. T? _val
)

Implementation

Ok(this._val) {
  ArgumentError.checkNotNull(val);
}