BorderedText constructor
BorderedText({
- required Text child,
- StrokeCap strokeCap = StrokeCap.round,
- StrokeJoin strokeJoin = StrokeJoin.round,
- double strokeWidth = 6.0,
- Color strokeColor = const Color.fromRGBO(53, 0, 71, 1),
Implementation
BorderedText({
required this.child,
this.strokeCap = StrokeCap.round,
this.strokeJoin = StrokeJoin.round,
this.strokeWidth = 6.0,
this.strokeColor = const Color.fromRGBO(53, 0, 71, 1),
});