FluentRowWidgetRenderer constructor

FluentRowWidgetRenderer({
  1. Key? key,
  2. required FluentRow node,
  3. 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(),
      );