dispose method
void
dispose()
Detaches the binding from its controller.
Implementation
void dispose() {
if (_disposed) return;
_disposed = true;
_controller.removeListener(_handleControllerChanged);
}
Detaches the binding from its controller.
void dispose() {
if (_disposed) return;
_disposed = true;
_controller.removeListener(_handleControllerChanged);
}