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