StreamingMarkdown constructor
const
StreamingMarkdown({})
Creates a revealing Markdown view.
Implementation
const StreamingMarkdown({
super.key,
required this.text,
required this.builder,
this.isStreaming = true,
this.charactersPerSecond = 300,
this.seamGap = 0,
}) : assert(charactersPerSecond > 0, 'charactersPerSecond must be positive'),
assert(seamGap >= 0, 'seamGap must not be negative');