textStyleWhite1 function
Implementation
textStyleWhite1(double x,double scale){
double size =scale * (x * 1.3);
TextStyle toastStyleWhite=TextStyle(
fontSize: size,
color: whiteColor,
fontWeight: FontWeight.w600
);
return toastStyleWhite;
}