SuffaText constructor

const SuffaText({
  1. Key? key,
  2. required String title,
  3. AlignmentGeometry? alignment,
  4. EdgeInsetsGeometry? padding,
  5. TextStyle? textFont,
  6. int? maxLines,
  7. TextAlign? textAlign,
  8. double? textSize,
  9. FontWeight? textWeight,
  10. Color? textColor,
})

Implementation

const SuffaText(
    {super.key,
    required this.title,
    this.alignment,
    this.padding,
    this.textFont,
    this.maxLines,
    this.textAlign,
    this.textSize,
    this.textWeight,
    this.textColor});