StrokeText constructor
const
StrokeText(
- String text, {
- Key? key,
- required Color strokeColor,
- required double strokeWidth,
- bool fillText = true,
- TextStyle? style,
- TextAlign? textAlign,
- TextDirection? textDirection,
- int? maxLines,
- 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,
});