StrokeText constructor
const
StrokeText(
- String text, {
- Key? key,
- StrokeCap strokeCap = StrokeCap.round,
- StrokeJoin strokeJoin = StrokeJoin.round,
- double strokeWidth = 1.0,
- Color strokeColor = Colors.grey,
- TextStyle? style,
- TextAlign? textAlign,
- TextDirection? textDirection,
- Locale? locale,
- bool? softWrap,
- TextOverflow? overflow,
- double? textScaleFactor,
- 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);