BodyLarge constructor

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

Implementation

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