requestPhoneUpdate method
The function requestPhoneUpdate sends a request to update the phone number.
Args: phone (String): A string representing the new phone number that needs to be updated.
Implementation
Future<void> requestPhoneUpdate(String phone) async {
return _methods.requestPhoneUpdate(phone);
}