status property Null safety
An updated stream with the user's connection status.
Implementation
Stream<AuthenticationStatus> get status async*
{
_broadcastStream ??= _stateStream.stream.asBroadcastStream();
yield *_broadcastStream!;
}
An updated stream with the user's connection status.
Stream<AuthenticationStatus> get status async*
{
_broadcastStream ??= _stateStream.stream.asBroadcastStream();
yield *_broadcastStream!;
}