StrokeText constructor

const StrokeText(
  1. String text, {
  2. Key? key,
  3. required Color strokeColor,
  4. required double strokeWidth,
  5. bool fillText = true,
  6. TextStyle? style,
  7. TextAlign? textAlign,
  8. TextDirection? textDirection,
  9. int? maxLines,
  10. TextOverflow? overflow,
})

Implementation

const StrokeText(
  this.text, {
  super.key,
  required this.strokeColor,
  required this.strokeWidth,
  this.fillText = true,
  this.style,
  this.textAlign,
  this.textDirection,
  this.maxLines,
  this.overflow,
});