xH5Text method

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

Implementation

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