overlayFullScreenSetChildAndStart method
Implementation
void overlayFullScreenSetChildAndStart(Widget Function()? child) {
logd('overlayFullScreenSetChildAndStart');
emitSafe(state.copyWith(
overlayFullScreenChild: () =>
(state.overlayFullScreenChild ?? <Widget Function()>[])..add(child!),
overlayFullScreenChildCount: state.overlayFullScreenChildCount + 1,
appStatus: AppStatus.overlyFullScreen,
));
}