Paragraph constructor

Paragraph({
  1. Key? key,
  2. required dynamic text,
  3. dynamic color,
  4. dynamic fontWeight,
  5. dynamic fontSize,
  6. dynamic textAlign,
})

Implementation

Paragraph({
  super.key,
  required this.text,
  this.color,
  this.fontWeight,
  this.fontSize,
  this.textAlign,
});