FluentCell constructor

FluentCell({
  1. List<FNode>? children,
})

Implementation

FluentCell({List<FNode>? children})
    : children = children ?? [Paragraph()], // Default: an empty paragraph
      super(nanoid());