BaseBorderText constructor

const BaseBorderText({
  1. Key? key,
  2. required Text child,
  3. StrokeCap strokeCap = StrokeCap.round,
  4. StrokeJoin strokeJoin = StrokeJoin.round,
  5. double strokeWidth = 1.0,
  6. Color strokeColor = Colors.black,
  7. Alignment textAlignment = Alignment.center,
})

Implementation

const BaseBorderText({
  super.key,
  required this.child,
  this.strokeCap = StrokeCap.round,
  this.strokeJoin = StrokeJoin.round,
  this.strokeWidth = 1.0,
  this.strokeColor = Colors.black,
  this.textAlignment = Alignment.center,
});