StrokeText constructor

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

Implementation

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