confirmPhoneUpdate method

Future<void> confirmPhoneUpdate(
  1. String phone,
  2. String confirmationCode,
  3. bool smsAgreement
)

Implementation

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