signature property

DBusSignature signature

Gets the signature of the returnValues.

Implementation

DBusSignature get signature => returnValues
    .map((value) => value.signature)
    .fold(DBusSignature(''), (a, b) => a + b);