TextShape constructor

const TextShape({
  1. Key? key,
  2. required String text,
  3. required String type,
  4. double letterSpacing = 1.5,
  5. double size = 200,
  6. double strokeWidth = 34,
  7. required TextStyle textStyle,
  8. Color shapeColor = Colors.grey,
})

Implementation

const TextShape({super.key, required this.text, required this.type,this.letterSpacing=1.5,this.size=200,
  this.strokeWidth=34,

  required this.textStyle,this.shapeColor=Colors.grey} );