isAvailableSubscription property Null safety
Subscribe to availability changes.
Implementation
static Stream<bool> get isAvailableSubscription {
return _isAvailableChannel.receiveBroadcastStream().map((event) {
return deserializeIsAvailable(event);
});
}