DBusMethodErrorResponse.propertyReadOnly constructor

DBusMethodErrorResponse.propertyReadOnly([
  1. String? message
])

Creates a new error response when attempting to write to a read-only property.

Implementation

DBusMethodErrorResponse.propertyReadOnly([String? message])
    : this('org.freedesktop.DBus.Error.PropertyReadOnly',
          message != null ? [DBusString(message)] : []);