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