DBusSignature.dict constructor

DBusSignature.dict(
  1. DBusSignature key,
  2. DBusSignature value
)

Create a new D-Bus signature of a dictionary of the given key and value types (DBusDict).

Implementation

factory DBusSignature.dict(DBusSignature key, DBusSignature value) =>
    DBusSignature('a{${key.value}${value.value}}');