getSubscribedTopics method

Future<List<String>> getSubscribedTopics()

Returns the list of topics the device is currently subscribed to. On Android/iOS with Firebase this reflects both FCM and local subscriptions. Without Firebase, it reflects locally stored subscriptions only.

Implementation

Future<List<String>> getSubscribedTopics() {
  throw UnimplementedError('getSubscribedTopics() has not been implemented.');
}