SmallBody constructor

const SmallBody({
  1. required String text,
  2. Color? color,
  3. double? size,
  4. TextAlign? textAlign,
  5. bool shadowed = false,
  6. FontWeight? weight,
  7. Key? key,
})

Implementation

const SmallBody(
    {required this.text,
    this.color,
    this.size,
    this.textAlign,
    this.shadowed = false,
    this.weight,
    super.key});