gradientText static method

Widget gradientText(
  1. String text
)

Implementation

static Widget gradientText(String text) => GradientText(
      text,
      gradient: AppColors.shadowGradient,
      style: TextStyle(
          fontFamily: defaultFontFamily,
          color: AppColors.textColor,
          fontSize: largeTextSize,
          fontWeight: FontWeight.normal),
    );