unrwap method

dynamic unrwap()

Depending on isOk this will return the value of type S or type E

Implementation

dynamic unrwap() {
  if(isOk) return success!;
  return error!;
}