unsubscribeFromChannel method

Future<void> unsubscribeFromChannel(
  1. String value
)

Unsubscribes the device to a channel of push notifications

Implementation

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

  await parseInstallation.unsubscribeFromChannel(value);
}