GrxLabelSmallText.lerp constructor
GrxLabelSmallText.lerp(
- String? text, {
- Key? key,
- required GrxLabelSmallTextStyle style,
- required double t,
- TextAlign? textAlign,
- GrxTextTransform transform = GrxTextTransform.none,
- Color? color,
- FontWeight? fontWeight,
- TextDecoration? decoration,
- TextOverflow? overflow,
- bool isLoading = false,
Implementation
GrxLabelSmallText.lerp(
this.text, {
super.key,
required final GrxLabelSmallTextStyle style,
required final double t,
this.textAlign,
this.transform = GrxTextTransform.none,
this.color,
this.fontWeight,
this.decoration,
this.overflow,
this.isLoading = false,
}) : textSpan = null,
style =
TextStyle.lerp(
GrxLabelSmallTextStyle(
color: color,
decoration: decoration,
overflow: overflow,
fontWeight: fontWeight,
),
style,
t,
)!;