AFDrawerPrototype constructor

AFDrawerPrototype({
  1. required AFPrototypeID id,
  2. required dynamic models,
  3. AFNavigatePushAction? navigate,
  4. AFNavigateWithOnEventContextDelegate? navigateWithEventContext,
  5. required AFSingleScreenPrototypeBody body,
  6. required AFTestTimeHandling timeHandling,
})

Implementation

AFDrawerPrototype({
  required AFPrototypeID id,
  required dynamic models,
  AFNavigatePushAction? navigate,
  AFNavigateWithOnEventContextDelegate? navigateWithEventContext,
  required AFSingleScreenPrototypeBody body,
  required AFTestTimeHandling timeHandling,
}): super(
  id: id,
  stateView: models,
  navigate: navigate,
  navigateWithEventContext: navigateWithEventContext,
  body: body,
  timeHandling: timeHandling,
  uiType: AFUIType.drawer
);