xH3Text method

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

Implementation

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