textItem function

Widget textItem(
  1. String content, {
  2. Color? color,
  3. double? fontSize = 16,
  4. FontWeight? fontWeight = FontWeight.normal,
})

Implementation

Widget textItem(
  String content, {
  Color? color,
  double? fontSize = 16,
  FontWeight? fontWeight = FontWeight.normal,
}) {
  return Text(
    content,
    style: TextStyle(fontSize: fontSize, color: color, fontWeight: fontWeight),
  );
}