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