fatal property

bool get fatal

If true, the error was fatal and the network transaction was aborted. Otherwise, a direct connection is used instead.

Implementation

bool get fatal => _wrapped.fatal;
set fatal (bool v)

Implementation

set fatal(bool v) {
  _wrapped.fatal = v;
}