overlayFullScreenFinish method

void overlayFullScreenFinish()

Implementation

void overlayFullScreenFinish() {
  logd('overlayFullScreenFinish');
  emitSafe(
    state.copyWith(
      appStatus: state.overlayFullScreenChildCount <= 1 ? AppStatus.normal : state.appStatus,
      overlayFullScreenChild: () =>
          (state.overlayFullScreenChild ?? <Widget Function()>[])..removeLast(),
      overlayFullScreenChildCount: state.overlayFullScreenChildCount - 1,
    ),
  );
}