AFSingleScreenPrototype constructor
AFSingleScreenPrototype({
- required AFPrototypeID id,
- required dynamic stateView,
- required AFSingleScreenPrototypeBody body,
- required AFTestTimeHandling timeHandling,
Implementation
AFSingleScreenPrototype({
required AFPrototypeID id,
required dynamic stateView,
AFNavigatePushAction? navigate,
AFNavigateWithOnEventContextDelegate? navigateWithEventContext,
required AFSingleScreenPrototypeBody body,
required AFTestTimeHandling timeHandling,
}): super(
id: id,
stateView: stateView,
navigate: navigate,
navigateWithEventContext: navigateWithEventContext,
body: body,
uiType: AFUIType.screen,
timeHandling: timeHandling
);