error property

String get error

The error description. This string is not guaranteed to remain backwards compatible between releases. You must not parse and act based upon its content.

Implementation

String get error => _wrapped.error;
set error (String v)

Implementation

set error(String v) {
  _wrapped.error = v;
}