preload method
Preload the page at index
Implementation
bool preload(int index) {
final didPreload = _tabKeys[index]?.currentState?.preload() == true;
if (didPreload && mounted) {
setState(() {
_updateChildren();
});
}
return didPreload;
}