MhBodyMedium constructor

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

Implementation

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