preload method

bool preload(
  1. int index
)

Preload the page at index

Implementation

bool preload(int index) {
  final didPreload = _tabKeys[index]?.currentState?.preload() == true;
  if (didPreload) {
    _updateChildren();
  }
  return didPreload;
}