NZText.subtitle constructor
副标题样式
Implementation
factory NZText.subtitle(String data, {Color? color, TextAlign? textAlign}) =>
NZText(
data,
textAlign: textAlign,
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.w500,
color: color,
),
);