activeDeviceStream method
Implementation
@override
Stream<bool> activeDeviceStream() {
return activeDeviceEventChannel.receiveBroadcastStream().map((
dynamic event,
) {
final available = event as bool;
if (kDebugMode) {
debugPrint('[MetaWearablesDAT] activeDevice → $available');
}
return available;
});
}