MhHeadlineMedium constructor

const MhHeadlineMedium({
  1. Key? key,
  2. required String text,
  3. double topPadding = 6,
  4. double bottomPadding = 6,
  5. Color? textColor,
  6. FontWeight fontWeight = FontWeight.normal,
  7. TextOverflow overflow = TextOverflow.ellipsis,
})

Implementation

const MhHeadlineMedium(
    {super.key,
    required this.text,
    this.topPadding = 6,
    this.bottomPadding = 6,
    this.textColor,
    this.fontWeight = FontWeight.normal,
    this.overflow = TextOverflow.ellipsis});