nameLost property

Stream<String> nameLost

Stream of names as this client loses them.

Implementation

Stream<String> get nameLost => DBusSignalStream(this,
        sender: 'org.freedesktop.DBus',
        interface: 'org.freedesktop.DBus',
        name: 'NameLost',
        signature: DBusSignature('s'))
    .map((signal) => signal.values[0].asString());