removeViewModel method
Implementation
@override
void removeViewModel(RenderViewModel child) {
if (child is ListPullHeaderViewModel) {
pullHeaderViewModel = null;
} else if (child is ListPullFooterViewModel) {
pullFooterViewModel = null;
}
super.removeViewModel(child);
}