StyledSegment constructor

const StyledSegment({
  1. required List<TagSegment> children,
  2. String? foreground,
  3. String? background,
  4. List<String> options = const [],
  5. String? href,
  6. String? namedStyle,
})

Implementation

const StyledSegment({
  required this.children,
  this.foreground,
  this.background,
  this.options = const [],
  this.href,
  this.namedStyle,
});