I got error on:
user = new BehaviorSubject<User>(null);
but:
user = new BehaviorSubject<User>(null!);
was not an error. What is the the use of null!
in this context?
I got error on:
user = new BehaviorSubject<User>(null);
but:
user = new BehaviorSubject<User>(null!);
was not an error. What is the the use of null!
in this context?