xH4Text method

Widget xH4Text (
  1. {Color color = Colors.white,
  2. FontWeight fontWeight = FontWeight.bold}
)

Implementation

Widget xH4Text(
    {Color color = Colors.white, FontWeight fontWeight = FontWeight.bold}) {
  return H4(
    text: this,
    fontWeight: fontWeight,
    color: color,
  );
}