textBold static method
Implementation
static Text textBold(
{required String text,
double fontSize = 16,
Color color = NectorColor.black0,
int maxLines = 1}) {
return Text(
text,
maxLines: maxLines,
style: TextStyle(
fontSize: fontSize,
color: color,
fontWeight: FontWeight.w800,
),
);
}