SequenceDiagramModel constructor

SequenceDiagramModel({
  1. String mermaid = '',
  2. int width = 80,
  3. int height = 24,
  4. SequenceDiagramTheme? theme,
})

Implementation

SequenceDiagramModel({
  this.mermaid = '',
  this.width = 80,
  this.height = 24,
  SequenceDiagramTheme? theme,
}) : theme = theme ?? SequenceDiagramTheme.defaultTheme;