AFConnectedWidgetPrototype constructor

AFConnectedWidgetPrototype({
  1. required AFPrototypeID id,
  2. required dynamic models,
  3. required AFRouteParam routeParam,
  4. List<AFRouteParam>? children,
  5. required AFRenderConnectedChildDelegate render,
  6. required AFSingleScreenPrototypeBody body,
  7. required AFTestTimeHandling timeHandling,
})

Implementation

AFConnectedWidgetPrototype({
  required AFPrototypeID id,
  required dynamic models,
  required this.routeParam,
  this.children,
  required AFRenderConnectedChildDelegate render,
  required AFSingleScreenPrototypeBody body,
  required this.timeHandling,
}): super(id: id, body: body, stateView: models, render: render);