StrokeText constructor

const StrokeText({
  1. Key? key,
  2. TextAlign textAlign = TextAlign.start,
  3. required String text,
  4. required bool isDisabled,
  5. double? strokeWidth,
  6. double? fontSize,
  7. double? height,
  8. Color? color,
  9. Color? strokeColor,
})

Implementation

const StrokeText(
    {super.key,
    this.textAlign = TextAlign.start,
    required this.text,
    required this.isDisabled,
    this.strokeWidth,
    this.fontSize,
    this.height,
    this.color,
    this.strokeColor});