BorderedText constructor

BorderedText({
  1. required Text child,
  2. StrokeCap strokeCap = StrokeCap.round,
  3. StrokeJoin strokeJoin = StrokeJoin.round,
  4. double strokeWidth = 6.0,
  5. 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),
});