confirmPhoneUpdate method
Implementation
Future<void> confirmPhoneUpdate(
String phone, String confirmationCode, bool smsAgreement) async {
await methodChannel.invokeMethod('Client/confirmPhoneUpdate', {
"phone": phone,
"confirmationCode": confirmationCode,
"smsAgreement": smsAgreement
});
}