Span constructor

Span(
  1. String text, {
  2. String style = "",
  3. List<Span> children = const [],
  4. TextStyleBuilder? textStyleBuilder,
})

Implementation

Span(
    this.text, {
      this.style = "",
      this.children = const [],
      this.textStyleBuilder,
    });