BigHeading constructor

const BigHeading({
  1. Key? key,
  2. required String heading,
  3. Color? color,
  4. double? forceFontSize,
  5. TextAlign? textAlign,
})

Implementation

const BigHeading({
  super.key,
  required this.heading,
  this.color,
  this.forceFontSize,
  this.textAlign,
});