normal static method
Implementation
static normal({required fontSize, required fontColor, bool? isUnderLine}) {
return TextStyle(
package: "aplus_chat",
color: fontColor,
fontFamily: "Poppins-Regular",
fontSize: fontSize,
decoration:
isUnderLine == true ? TextDecoration.underline : TextDecoration.none,
);
}