TextInfo constructor

const TextInfo({
  1. Key? key,
  2. required String text,
  3. required double size,
  4. Color? color,
  5. FontWeight? thickness,
  6. Alignment? align,
  7. EdgeInsets? pad,
})

Implementation

const TextInfo(
    {super.key,
    required this.text,
    required this.size,
    this.color,
    this.thickness,
    this.align,
    this.pad});