textSemiBold static method

Text textSemiBold({
  1. required String text,
  2. double fontSize = 14,
  3. Color color = NectorColor.black0,
})

Implementation

static Text textSemiBold(
    {required String text,
    double fontSize = 14,
    Color color = NectorColor.black0}) {
  return Text(
    text,
    style: TextStyle(
      fontSize: fontSize,
      color: color,
      fontWeight: FontWeight.w600,
    ),
  );
}