DBusObjectPath.unchecked constructor

const DBusObjectPath.unchecked(
  1. String value
)

Creates a new D-Bus object path with the given value.

No checking is performed on the validity of value. This function is useful when you need a constant value (e.g. for a parameter default value). In all other cases use the standard constructor.

Implementation

const DBusObjectPath.unchecked(String value) : super(value);