QUTitle constructor

const QUTitle({
  1. Key? key,
  2. required String text,
  3. double? fontSize,
  4. FontWeight? fontWeight,
  5. AlignmentGeometry alignment = Alignment.center,
})

Implementation

const QUTitle(
    {Key? key,
    required this.text,
    this.fontSize,
    this.fontWeight,
    this.alignment = Alignment.center})
    : super(key: key);