activateAccount method
This function activates a user account using their email address.
Args: email (String): The email parameter is a string that represents the email address of the user whose account needs to be activated.
Implementation
Future<void> activateAccount(String email) async {
return _methods.activateAccount(email);
}