Span constructor

Span({
  1. String type = Span.schemaName,
  2. String text = '',
  3. List<String> marks = const <String>[],
})

Implementation

Span({
  this.type = Span.schemaName,
  this.text = '',
  this.marks = const <String>[],
});