MhTitleMedium constructor

const MhTitleMedium({
  1. Key? key,
  2. required String text,
  3. TextOverflow overflow = TextOverflow.ellipsis,
  4. Color? textColor,
  5. double paddingTop = 8,
  6. double paddingBottom = 8,
})

Implementation

const MhTitleMedium(
    {super.key,
    required this.text,
    this.overflow = TextOverflow.ellipsis,
    this.textColor,
    this.paddingTop = 8,
    this.paddingBottom = 8});