DBusDict.unchecked constructor

const DBusDict.unchecked(
  1. DBusSignature keySignature,
  2. DBusSignature valueSignature, [
  3. Map<DBusValue, DBusValue> children = const {}
])

Creates a new dictionary with keys of the type keySignature and values of the type valueSignature.

No checking is performed on the validity of children. 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 DBusDict.unchecked(this.keySignature, this.valueSignature,
    [this.children = const {}]);