mega method

TextStyle mega({
  1. Color? color,
  2. bool? isBold,
  3. String? pageName,
  4. TextDecoration? decoration,
  5. Color? backgroundColor,
  6. String? fontFamily,
  7. FontWeight fontWeight = FontWeight.normal,
  8. bool? isStatic,
})

Implementation

TextStyle mega(
    {Color? color,
    bool? isBold,
    String? pageName,
    TextDecoration? decoration,
    Color? backgroundColor,
    String? fontFamily,
    FontWeight fontWeight = FontWeight.normal,
    bool? isStatic}) {
  return mega5(
      color: color,
      isBold: isBold,
      pageName: pageName,
      decoration: decoration,
      backgroundColor: backgroundColor,
      fontFamily: fontFamily,
      fontWeight: fontWeight,
      isStatic: isStatic);
}