bold18 method

  1. @override
TextStyle bold18({
  1. Color? color,
  2. TextAlign? align,
})
override

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,
  );
}