Headline6 constructor

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

Implementation

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