unfollow static method
Unfollow a community entity, like topic or user.
query
Query parameter.
Implementation
static Future<int> unfollow(FollowQuery query) {
return NativeBridge.async(
'Communities.unfollow', jsonEncode(query.toJSON()))
.then((result) {
return jsonDecode(result)['result'];
});
}