TTitleSection constructor

const TTitleSection({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. Widget? icon,
  5. VoidCallback? onPressed,
  6. String? buttonText,
  7. Color? buttonColor,
})

Implementation

const TTitleSection({
  super.key,
  required this.title,
  this.description,
  this.icon,
  this.onPressed,
  this.buttonText,
  this.buttonColor,
});