declineRequest static method

Future declineRequest(
  1. LCFriendshipRequest request
)

Implementation

static Future declineRequest(LCFriendshipRequest request) async {
  String path = 'users/friendshipRequests/${request.objectId}/decline';
  await LeanCloud._httpClient.put(path);
}