unsubscribe static method
Unsubscribes from BlueConic events using the subscription identifier.
This method removes a previously created event subscription. It's important to unsubscribe when you no longer need to receive events to prevent memory leaks and unnecessary processing.
identifier The unique identifier of the subscription to remove
Returns a Future<void> that completes when the unsubscription is done
Implementation
static Future<void> unsubscribe(String identifier) {
return BlueConicPlatform.instance.unsubscribe(identifier);
}