KTitle constructor

const KTitle({
  1. Key? key,
  2. double width = 5,
  3. double height = 25,
  4. Color color = Colors.lightBlue,
  5. double fontSize = 18.0,
  6. required String title,
})

Implementation

const KTitle(
    {Key? key,
    this.width = 5,
    this.height = 25,
    this.color = Colors.lightBlue,
      this.fontSize = 18.0,
    required this.title})
    : super(key: key);