missingDevice property

String? get missingDevice

The device picked with use that isn't connected, if any.

Implementation

String? get missingDevice =>
    (_chosenDevice != null && current == null && !_all)
    ? _chosenDevice
    : null;