updateAccount method

Future<void> updateAccount(
  1. ClientAccountUpdateContext clientAccountUpdateContext
)

This function updates a client account using the provided context.

Args: clientAccountUpdateContext (ClientAccountUpdateContext): It is an object of type ClientAccountUpdateContext that contains the information needed to update a client's account. This object may include fields such as the client's name, email, phone number, address, and any other relevant information that needs to be updated.

Implementation

Future<void> updateAccount(
    ClientAccountUpdateContext clientAccountUpdateContext) async {
  return _methods.updateAccount(clientAccountUpdateContext);
}