dispose method
Disposes the presenter. Should be called when the presenter is no longer needed. All the resources should be released here.
Implementation
@override
void dispose() {
for (final l in _subscriptions) {
l.cancel();
}
super.dispose();
}