requestPhoneUpdate method

Future<void> requestPhoneUpdate(
  1. String phone
)

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);
}