removeListener method
Removes a previously added listener.
listener
is the callback function to remove.
This method is protected and should be used by the framework, not directly by users.
Implementation
@override
@protected
void removeListener(VoidCallback listener) {
super.removeListener(listener);
}