overlayFullScreenSetChildAndStart method

void overlayFullScreenSetChildAndStart(
  1. Widget child()?
)

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,
  ));
}