isSingleCompleteType property

bool isSingleCompleteType

True if this signature is for a single complete type, i.e. represents a single dbus value. If False, then use split to get the types this signature contains.

Implementation

bool get isSingleCompleteType =>
    value.isNotEmpty && _findChildSignatureEnd(value, 0) == value.length - 1;