getAllMetaCounters method Null safety

Future<Map<String, int>> getAllMetaCounters()

Retrieves all meta counters from this channel.

Implementation

Future<Map<String, int>> getAllMetaCounters() async {
  return _sdk.api.send(
    ChannelMetaCounterGetRequest(
      channelType: channelType,
      channelUrl: channelUrl,
    ),
  );
}