updateUser method

Future<void> updateUser(
  1. User user
)

Updates the current user with the given user data.

Implementation

Future<void> updateUser(User user) async {
  var _user = await userDataSource.updateUser(user);

  state = _user.validOrNull;
}