buildCustom method

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

  final iconDecoded = _decodeIcon(
    value: model.icon,
  );

  return Icon(
    iconDecoded,
    applyTextScaling: model.applyTextScaling,
    color: model.color,
    fill: model.fill,
    grade: model.grade,
    key: key,
    opticalSize: model.opticalSize,
    semanticLabel: model.semanticLabel,
    shadows: model.shadows,
    size: model.size,
    textDirection: model.textDirection,
    weight: model.weight,
  );
}