message property

String message

Message passed with exception.

Implementation

String get message {
  if (response.values.isNotEmpty && response.values.first is DBusString) {
    return response.values.first.asString();
  }
  return '';
}