w400_20Poppins function

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

Implementation

TextStyle w400_20Poppins({Color? color = Colors.black}) {
  return TextStyle(
      fontSize:getFontSize(20.0) ,
      fontWeight: FontWeight.w400,
      color: color,
      fontFamily: AppString.poppins);
}