updateUserLogin method
- UserLogin? login
Updates MyUser.login field for the authenticated MyUser.
Implementation
Future<void> updateUserLogin(UserLogin? login) async {
Log.debug('updateUserLogin($login)', '$runtimeType');
await _myUserRepository.updateUserLogin(login);
}