normal14 method
Style for normal 14pt text.
Implementation
@override
TextStyle normal14({Color? color, TextAlign? align}) {
return TextStyle(
fontSize: 14,
fontWeight: FontWeight.normal,
color: color ?? Theme.of(context).colorScheme.onSurface,
);
}