PhoenixTitle constructor

const PhoenixTitle({
  1. Key? key,
  2. required String title,
  3. double fontSize = 16.0,
  4. FontWeight fontWeight = FontWeight.w500,
  5. Color color = const Color(0xff212124),
  6. TextOverflow? overflow,
})

Implementation

const PhoenixTitle({
  super.key,
  required this.title,
  this.fontSize = 16.0,
  this.fontWeight = FontWeight.w500,
  this.color = const Color(0xff212124),
  this.overflow,
});