textText static method

TextStyle textText({
  1. Color color = Colors.black,
  2. KRTextSize fontSize = KRTextSize.body,
  3. bool isBold = false,
})

Implementation

static TextStyle textText(
    {Color color = Colors.black,
    KRTextSize fontSize = KRTextSize.body,
    bool isBold = false}) {
  return TextStyle(
      color: color,
      letterSpacing: 0.5,
      fontSize: fontSize.value,
      fontWeight: isBold ? FontWeight.bold : FontWeight.normal);
}