unbindPhone static method

Future<AuthResult> unbindPhone()

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;
}