unbindPhone static method
unbind current user's phone number.
Implementation
static Future<AuthResult> unbindPhone() async {
final Result result = await post('/api/v3/unbind-phone');
AuthResult authResult = AuthResult(result);
return authResult;
}