buildCustom method

  1. @override
AnimatedPhysicalModel 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
AnimatedPhysicalModel buildCustom({
  ChildWidgetBuilder? childBuilder,
  required BuildContext context,
  required JsonWidgetData data,
  Key? key,
}) {
  final model = createModel(
    childBuilder: childBuilder,
    data: data,
  );

  return AnimatedPhysicalModel(
    animateColor: model.animateColor,
    animateShadowColor: model.animateShadowColor,
    borderRadius: model.borderRadius,
    clipBehavior: model.clipBehavior,
    color: model.color,
    curve: model.curve,
    duration: model.duration,
    elevation: model.elevation,
    key: key,
    onEnd: model.onEnd,
    shadowColor: model.shadowColor,
    shape: model.shape,
    child: model.child.build(
      childBuilder: childBuilder,
      context: context,
    ),
  );
}