Heading2 constructor

const Heading2(
  1. String text, {
  2. Key? key,
  3. Color? color,
  4. bool centerText = false,
  5. double? size,
  6. FontWeight? fontWeight,
  7. int? maxLines,
})

Implementation

const Heading2(
  this.text, {
  Key? key,
  this.color,
  this.centerText = false,
  this.size,
  this.fontWeight,
  this.maxLines,
}) : super(key: key);