headerLabelText method

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

Implementation

Text headerLabelText(String text, {Color color = Colors.black}) => Text(
      text,
      style: TextStyle(color: calculateTextColor(color), fontSize: 15),
      textAlign: TextAlign.center,
    );