TextStroke constructor

const TextStroke({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. Color? strokeColor,
  5. double? strokeWidth,
  6. TextAlign? textAlign,
  7. TextOverflow? overflow,
})

Implementation

const TextStroke({
  super.key,
  required this.text,
  this.style,
  this.strokeColor,
  this.strokeWidth,
  this.textAlign,
  this.overflow,
});