value property

T get value

Returns the converted value or throws the stored ConversionException.

Implementation

T get value {
  final error = _error;
  if (error != null) {
    Error.throwWithStackTrace(error, error.stackTrace);
  }
  return _value as T;
}