incomingSignals property

  1. @override
ValueNotifier<List<String>?> incomingSignals
final

The most recent incoming signal paths received from OTHER viewers.

Updated whenever another viewer broadcasts a selection while isActive is true. null until the first message arrives.

Implementation

@override
final ValueNotifier<List<String>?> incomingSignals =
    ValueNotifier<List<String>?>(null);