NZText.label constructor
标签文字样式 (中号加粗)
Implementation
factory NZText.label(String data, {Color? color, TextAlign? textAlign}) =>
NZText(
data,
textAlign: textAlign,
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w600,
color: color,
),
);