getTopicsCount static method
Get number of topics.
query
Query parameter.
Implementation
static Future<int> getTopicsCount(TopicsQuery query) {
return NativeBridge.async(
'Communities.getTopicsCount', jsonEncode(query.toJSON()))
.then((result) => jsonDecode(result)['result']);
}