buildCustom method

  1. @override
Placeholder buildCustom({
  1. ChildWidgetBuilder? childBuilder,
  2. required BuildContext context,
  3. required JsonWidgetData data,
  4. Key? key,
})

Custom builder that subclasses must override and implement to return the actual Widget to be placed on the tree.

Implementation

@override
Placeholder buildCustom({
  ChildWidgetBuilder? childBuilder,
  required BuildContext context,
  required JsonWidgetData data,
  Key? key,
}) {
  final model = createModel(
    childBuilder: childBuilder,
    data: data,
  );

  return Placeholder(
    color: model.color,
    fallbackHeight: model.fallbackHeight,
    fallbackWidth: model.fallbackWidth,
    key: key,
    strokeWidth: model.strokeWidth,
    child: model.child?.build(
      childBuilder: childBuilder,
      context: context,
    ),
  );
}