small static method
Implementation
static TextStyle small(BuildContext context, {Color? textColor}) {
return TextStyle(
fontFamily: 'Poppins',
package: 'shared_component',
fontSize: FontSizes.small,
color: textColor ?? Theme.of(context).textTheme.bodyLarge?.color,
);
}