unregisterFromTopics static method

Future<void> unregisterFromTopics(
  1. List<String> topics
)

Unregister the current device from an array of topics, the topics are matched using the code of the topic.

@param topics The array of topics you will unregister from. @returns A future that completes once the registration is successful.

Implementation

static Future<void> unregisterFromTopics(List<String> topics) async =>
    MBPush.unregisterFromTopics(topics);