getSubscribedTopics static method

Future<List> getSubscribedTopics()

Get subscribed topics

Implementation

static Future<List> getSubscribedTopics() async {
  if(!Platform.isAndroid) return [];
  return await _channel.invokeMethod("Pushe.getSubscribedTopics") ?? [];
}