getAllMetaCounters method
Retrieves all meta counters from this channel.
Implementation
Future<Map<String, int>> getAllMetaCounters() async {
return _sdk.api.send(
ChannelMetaCounterGetRequest(
channelType: channelType,
channelUrl: channelUrl,
),
);
}