overlayFullScreenSetChild method

void overlayFullScreenSetChild(
  1. Widget child()
)

Implementation

void overlayFullScreenSetChild(Widget Function() child) {
  logd('overlayFullScreenSetChild');
  emitSafe(
    state.copyWith(
      overlayFullScreenChild: () =>
          (state.overlayFullScreenChild ?? <Widget Function()>[])..add(child),
      overlayFullScreenChildCount: state.overlayFullScreenChildCount + 1,
    ),
  );
}