dispose method
void
dispose()
Disposes the controller.
After this method is called, the DataTable is disposed and cannot be used.
Implementation
void dispose() {
if (!_attached) return;
_attached = false;
_state.dispose();
}