bodyTitleText method

Text bodyTitleText(
  1. String text, {
  2. Color color = Colors.black,
})

Implementation

Text bodyTitleText(String text, {Color color = Colors.black}) => Text(
      text,
      style: TextStyle(color: calculateTextColor(color), fontSize: 13.5),
    );