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