StrokeText constructor

const StrokeText(
  1. String text, {
  2. Key? key,
  3. StrokeCap strokeCap = StrokeCap.round,
  4. StrokeJoin strokeJoin = StrokeJoin.round,
  5. double strokeWidth = 1.0,
  6. Color strokeColor = Colors.grey,
  7. TextStyle? style,
  8. TextAlign? textAlign,
  9. TextDirection? textDirection,
  10. Locale? locale,
  11. bool? softWrap,
  12. TextOverflow? overflow,
  13. double? textScaleFactor,
  14. int? maxLines,
})

Implementation

const StrokeText(this.text,
    {Key? key,
    this.strokeCap = StrokeCap.round,
    this.strokeJoin = StrokeJoin.round,
    this.strokeWidth = 1.0,
    this.strokeColor = Colors.grey,
    this.style,
    this.textAlign,
    this.textDirection,
    this.locale,
    this.softWrap,
    this.overflow,
    this.textScaleFactor,
    this.maxLines})
    : super(key: key);