buildCustom method

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

  return _Material(
    animationDuration: model.animationDuration,
    borderOnForeground: model.borderOnForeground,
    borderRadius: model.borderRadius,
    childBuilder: childBuilder,
    clipBehavior: model.clipBehavior,
    color: model.color,
    elevation: model.elevation,
    margin: model.margin,
    materialType: model.materialType,
    padding: model.padding,
    shadowColor: model.shadowColor,
    shape: model.shape,
    surfaceTintColor: model.surfaceTintColor,
    textStyle: model.textStyle,
    child: model.child,
  );
}