bold18 method
Style for bold 18pt text (typically used for titles).
Implementation
@override
TextStyle bold18({Color? color, TextAlign? align}) {
return TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
color: color ?? Theme.of(context).colorScheme.onSurface,
);
}