subscribeToChannel method

Future<void> subscribeToChannel(
  1. String value
)

Subscribes the device to a channel of push notifications

Implementation

Future<void> subscribeToChannel(String value) async {
  sdk.ParseInstallation parseInstallation =
      await sdk.ParseInstallation.currentInstallation();

  await parseInstallation.subscribeToChannel(value);
}