setFriends static method
Set the provided users as friends of current user. Important: Existing friends will be removed!
ids
List of user identifiers.
Implementation
static Future<int> setFriends(UserIdList ids) {
return NativeBridge.async(
'Communities.setFriends', jsonEncode(ids.toJSON()))
.then((result) => jsonDecode(result)['result']);
}