NxText.body2 constructor
NxText.body2(})
Implementation
factory NxText.body2(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: 12,
fontWeight: FontWeight.w300,
onPressed: onPressed,
lineHeight: 1.5,
);