removeListener method
Remove a previously registered closure from the list of closures that the object notifies.
Implementation
@override
void removeListener(VoidCallback listener) {
final cleanup = _listeners.remove(listener);
cleanup?.call();
}