w700_25Poppins function

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

Implementation

TextStyle w700_25Poppins({Color? color = Colors.black}) {
  return TextStyle(
      fontSize:getFontSize(25.0) ,
      fontWeight: FontWeight.w700,
      color: color,
      fontFamily: AppString.poppins);
}