mapStringVariant method

Map<String, DBusValue> mapStringVariant()

Maps the contents of this array into native types. Only works if keySignature is 's' and valueSignature is 'v'.

Implementation

Map<String, DBusValue> mapStringVariant() =>
    children.map((key, value) => MapEntry(key.asString(), value.asVariant()));