changeFriendVerificationMethod method

Future<V2TimCallback> changeFriendVerificationMethod(
  1. int allowType
)

Change the friend adding request verification method, 0 represents "Accept all friend request", 1 represents "Require approval for friend requests", 2 represents "reject all friend requests".

Implementation

Future<V2TimCallback> changeFriendVerificationMethod(int allowType) {
  return model.changeFriendVerificationMethod(allowType);
}