hubble static method
GradientMask
hubble({
- required String text,
- TextStyle? style,
- int? maxLines,
- TextOverflow? overflow,
- 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,
),
);
}