isBootstrappedUpdates property
Stream of the "has identify(...) completed successfully?" flag.
Mirrors the SDK's isBootstrapped state observable.
Implementation
@override
Stream<bool> get isBootstrappedUpdates {
_isBootstrappedUpdatesStream ??= isBootstrappedEventChannel
.receiveBroadcastStream()
.map((event) => event as bool);
return _isBootstrappedUpdatesStream!;
}