NZText.h3 constructor
三级标题样式
Implementation
factory NZText.h3(String data, {Color? color, TextAlign? textAlign}) =>
NZText(
data,
textAlign: textAlign,
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.bold,
color: color,
),
);