message property

String get message

Description of the error that has taken place.

Implementation

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

Implementation

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