FluentRowWidgetRenderer constructor
FluentRowWidgetRenderer({
- Key? key,
- required FluentRow node,
- required FluentDocument document,
Implementation
FluentRowWidgetRenderer({
super.key,
required this.node,
required FluentDocument document,
}) : super(
children: node.cells
.map((cell) => _CellWrapper(cell: cell, child: buildFNodeWidget(cell, document)))
.toList(),
);