unsubscribeFromTopic method

Future<void> unsubscribeFromTopic(
  1. String topic
)

Unsubscribes the device from the specified FCM topic.

Implementation

Future<void> unsubscribeFromTopic(String topic) async {
  await FirebaseMessagingUtility.instance.unsubscribeFromTopic(topic);
}