buildCustom method
Widget
buildCustom({
- ChildWidgetBuilder? childBuilder,
- required BuildContext context,
- required JsonWidgetData data,
- Key? key,
override
Custom builder that subclasses must override and implement to return the actual Widget to be placed on the tree.
Implementation
@override
Widget buildCustom({
ChildWidgetBuilder? childBuilder,
required BuildContext context,
required JsonWidgetData data,
Key? key,
}) {
return Icon(
icon,
color: color,
fill: fill,
grade: grade,
key: key,
opticalSize: opticalSize,
semanticLabel: semanticLabel,
shadows: shadows,
size: size,
textDirection: textDirection,
weight: weight,
);
}