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