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