MhTitleSmall constructor

const MhTitleSmall({
  1. Key? key,
  2. required String text,
  3. TextOverflow overflow = TextOverflow.ellipsis,
  4. Color? textColor,
})

Implementation

const MhTitleSmall(
    {super.key,
    required this.text,
    this.overflow = TextOverflow.ellipsis,
    this.textColor});