updateUserLogin method
- UserLogin? login
Updates MyUser.login field for the authenticated MyUser.
Implementation
Future<void> updateUserLogin(UserLogin? login) async {
await _myUserService.updateUserLogin(login);
}
Updates MyUser.login field for the authenticated MyUser.
Future<void> updateUserLogin(UserLogin? login) async {
await _myUserService.updateUserLogin(login);
}