rrousselGit / state_notifier

ValueNotifier, but outside Flutter and with some extra perks
MIT License
311 stars 28 forks source link

How can I remove listeners from StateNotifier ? #22

Closed tbm98 closed 4 years ago

tbm98 commented 4 years ago

How can I remove listeners from StateNotifier ?

rrousselGit commented 4 years ago

AddListener returns a function that you can call to remove the listener

final removeListener = stateNotifier.addListener((value) {
});

removeListener();
tbm98 commented 4 years ago

Thanks!