setCurrentAccount method

Future<void> setCurrentAccount(
  1. MSALAccount account
)

Implementation

Future<void> setCurrentAccount(MSALAccount account) async {
  _currentAccount = account;
  await _prefs.setString(_kDefaultUser, account.identifier);
}