pushPage method

  1. @override
void pushPage({
  1. Widget? page,
  2. bool forceNewTab = false,
})
inherited

Push a page to the current tab.

Implementation

@override
void pushPage({Widget? page, bool forceNewTab = false}) {
  final _$actionInfo = _$TabPanelBaseActionController.startAction(
      name: 'TabPanelBase.pushPage');
  try {
    return super.pushPage(page: page, forceNewTab: forceNewTab);
  } finally {
    _$TabPanelBaseActionController.endAction(_$actionInfo);
  }
}