AFSingleScreenPrototype constructor

AFSingleScreenPrototype({
  1. required AFPrototypeID id,
  2. required dynamic stateView,
  3. AFNavigatePushAction? navigate,
  4. AFNavigateWithOnEventContextDelegate? navigateWithEventContext,
  5. required AFSingleScreenPrototypeBody body,
  6. 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
);