areFriends<T> method

Future<ApiResponse<T>> areFriends<T>(
  1. Map<String, Object> params
)

Checks the current user's friendship status with other specified users.

Implementation

Future<ApiResponse<T>> areFriends<T>(Map<String, Object> params) =>
    _api.request<T>('friends.areFriends', params);