statusStream property
Stream<JwtAuthenticationStatus>
get
statusStream
Implementation
Stream<JwtAuthenticationStatus> get statusStream async* {
await Future<void>.delayed(const Duration(seconds: 1));
yield JwtAuthenticationStatus.unauthenticated;
yield* _statusStream.stream;
}