hubble static method

GradientMask hubble({
  1. required String text,
  2. TextStyle? style,
  3. int? maxLines,
  4. TextOverflow? overflow,
  5. TextAlign? textAlign,
})

Implementation

static GradientMask hubble({
  required String text,
  TextStyle? style,
  int? maxLines,
  TextOverflow? overflow,
  TextAlign? textAlign,
}) {
  return GradientMask.hubble(
    child: HubbleText(
      text,
      style: style,
      maxLines: maxLines,
      overflow: overflow,
    ),
  );
}