isException property
bool
get
isException
Set if the evaluated code produces an unhandled exception.
Implementation
bool get isException => _wrapped.isException;
set
isException
(bool v)
Implementation
set isException(bool v) {
_wrapped.isException = v;
}