value property

  1. @override
V value
override

The value of the result, if the result was successful.

If an exception was thrown while retrieving the value, this will throw. See exception for more details.

Implementation

@override
V get value {
  if (stackTrace != null) {
    // TODO(dnys1): Chain, instead, so that the current stack trace can
    /// provide context to the original
  }
  throw exception;
}