Hi there,
I'm using branch.subscribe for incoming links as shown in usage
and wondering if there is branch.unsubscribe? i tried it with branch.unsubscribe and it doesn't seem to work.
I need it in case when user is currently logged out and app is opened using deep link
it won't direct to the deep link page until user logs in
Thanks!
the subscribe method returns an unsubscribe function, much like redux does. i.e.
const branchUnsubscribe = branch.subscribe(listener)
// sometime later ...
branchUnsubscribe()
Most helpful comment
the
subscribemethod returns an unsubscribe function, much like redux does. i.e.