Headline5 constructor

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

Implementation

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