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),
})

Implementation

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