requestPhoneUpdate method

Future<void> requestPhoneUpdate(
  1. String phone
)

Implementation

Future<void> requestPhoneUpdate(String phone) async {
  await methodChannel
      .invokeMethod('Client/requestPhoneUpdate', {"phone": phone});
}