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