heading2 static method
Implementation
static TextStyle heading2(BuildContext context, {Color? textColor}) {
return TextStyle(
fontFamily: 'Poppins',
package: 'shared_component',
fontSize: FontSizes.extraLarge,
fontWeight: FontWeight.bold,
color: textColor ?? Theme.of(context).textTheme.titleLarge?.color,
);
}