childrenWidgets method

List<Widget> childrenWidgets(
  1. BuildContext context
)

Return the list of children Widget

Implementation

List<Widget> childrenWidgets(BuildContext context) =>
    children.map((e) => e.toWidget(context)).toList();