Success<S, E> constructor

const Success<S, E>(
  1. S _success
)

Receives the S param as the successful result.

Implementation

const Success(
  this._success,
);