chore(llc, core, ui): ignore deprecated methods from codecov

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-07-26 16:45:36 +05:30
committed by xsahil03x
parent 2be51c0c01
commit 5c7877b987
3 changed files with 12 additions and 0 deletions
@@ -1441,6 +1441,8 @@ class ClientState {
/// The current user as a stream
Stream<OwnUser?> get currentUserStream => _currentUserController.stream;
// coverage:ignore-start
/// The current user
@Deprecated('Use `.currentUser` instead, Will be removed in future releases')
OwnUser? get user => _currentUserController.valueOrNull;
@@ -1451,6 +1453,8 @@ class ClientState {
)
Stream<OwnUser?> get userStream => _currentUserController.stream;
// coverage:ignore-end
/// The current user
Map<String, User> get users => _usersController.value;