TextRichStroke constructor

const TextRichStroke({
  1. Key? key,
  2. required TextSpan textSpan,
  3. TextAlign? textAlign,
  4. Color? strokeColor,
  5. double? strokeWidth,
  6. TextOverflow? overflow,
})

Implementation

const TextRichStroke({
  super.key,
  required this.textSpan,
  this.textAlign,
  this.strokeColor,
  this.strokeWidth,
  this.overflow,
});