removeListener method

  1. @override
void removeListener(
  1. Function listener
)
override

Stop calling the listener every time the value of the animation changes.

Listeners can be added with addListener.

Implementation

@override
void removeListener(Function listener) {
  _controller.removeListener(listener as void Function());
}