FluentRow constructor

FluentRow({
  1. List<FluentCell>? cells,
  2. double? rowHeight,
})

Implementation

FluentRow({List<FluentCell>? cells, this.rowHeight})
  : _cells = cells ?? [],
    super(nanoid());