w600_24Poppins function

TextStyle w600_24Poppins({
  1. Color? color = Colors.black,
})

Implementation

TextStyle w600_24Poppins({Color? color = Colors.black}) {
  return TextStyle(
      fontSize:getFontSize(24.0) ,
      fontWeight: FontWeight.w600,
      color: color,
      fontFamily: AppString.poppins);
}