NxText.small2 constructor
NxText.small2(})
Implementation
factory NxText.small2(String text, {
int? maxLines,
TextOverflow? overflow,
TextAlign? textAlign,
Color? color,
double? lineHeight,
Function? onPressed
}) => NxText(
text,
maxLines: maxLines,
overflow: overflow,
textAlign: textAlign,
color: color,
fontSize: 8,
fontWeight: FontWeight.w400,
onPressed: onPressed,
lineHeight: 1.5,
);