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