AFWidgetPrototype constructor

AFWidgetPrototype({
  1. required AFPrototypeID id,
  2. required AFSingleScreenPrototypeBody body,
  3. required dynamic stateView,
  4. required AFRenderConnectedChildDelegate render,
  5. AFCreateWidgetWrapperDelegate? createWidgetWrapperDelegate,
  6. String? title,
})

Implementation

AFWidgetPrototype({
  required AFPrototypeID id,
  required this.body,
  required this.stateView,
  required this.render,
  this.createWidgetWrapperDelegate,
  String? title
}): super(id: id, uiType: AFUIType.widget);