buildWidget method

  1. @override
Widget buildWidget(
  1. BuildContext context
)
override

Builds the widget for this component.

context The build context. Returns the widget tree that represents this component visually.

Implementation

@override
Widget buildWidget(BuildContext context) {
  return DuckSectionHeaderWidget(
    data: DuckSectionHeaderWidgetData.fromComponent(this),
  );
}