observeHideTab method

Stream? observeHideTab(
  1. TabType type
)

Implementation

Stream? observeHideTab(TabType type) => _tabControllers[type]
    ?.stream
    .where((lifecycleState) => lifecycleState == TabState.hidden);