TextPressureBit constructor

const TextPressureBit({
  1. Key? key,
  2. required String text,
  3. String? fontFamily,
  4. String? fontUrl,
  5. bool flex = true,
  6. bool scale = false,
  7. bool alpha = false,
  8. bool stroke = false,
  9. bool width = true,
  10. bool weight = true,
  11. bool italic = true,
  12. Color textColor = Colors.black,
  13. Color strokeColor = Colors.white,
  14. String? className,
  15. double minFontSize = 24,
})

Implementation

const TextPressureBit({
  super.key,
  required this.text,
  this.fontFamily,
  this.fontUrl,
  this.flex = true,
  this.scale = false,
  this.alpha = false,
  this.stroke = false,
  this.width = true,
  this.weight = true,
  this.italic = true,
  this.textColor = Colors.black,
  this.strokeColor = Colors.white,
  this.className,
  this.minFontSize = 24,
});