requestPhoneUpdate method

Future<SyneriseResult<void>> requestPhoneUpdate(
  1. String phone
)

Implementation

Future<SyneriseResult<void>> requestPhoneUpdate(String phone) async {
  return await SyneriseInvocation(methodChannel).invokeSDKApiMethod<void>(
      'Client/requestPhoneUpdate',
      parameters: {"phone": phone});
}