message property

String get message

Message passed with exception.

Implementation

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