BodySmall constructor

const BodySmall({
  1. Key? key,
  2. required String data,
  3. double? opacity,
  4. FontWeight? fontWeight,
  5. double? fontsize,
  6. Color? color,
})

Implementation

const BodySmall(
    {Key? key,
    required this.data,
    this.opacity,
    this.fontWeight,
    this.fontsize, this.color})
    : super(key: key);