getSubscribedChannels method

Future<List> getSubscribedChannels()

Returns an <List> containing all the channel names this device is subscribed to

Implementation

Future<List<dynamic>> getSubscribedChannels() async {
  sdk.ParseInstallation parseInstallation =
      await sdk.ParseInstallation.currentInstallation();

  return await parseInstallation.getSubscribedChannels();
}