GrxLabelLargeText.lerp constructor
GrxLabelLargeText.lerp(
- String? text, {
- Key? key,
- required GrxLabelLargeTextStyle style,
- required double t,
- TextAlign? textAlign,
- GrxTextTransform transform = GrxTextTransform.none,
- Color? color,
- FontWeight? fontWeight,
- TextDecoration? decoration,
- TextOverflow? overflow,
- bool isLoading = false,
Implementation
GrxLabelLargeText.lerp(
this.text, {
super.key,
required final GrxLabelLargeTextStyle 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(
GrxLabelLargeTextStyle(
color: color,
decoration: decoration,
overflow: overflow,
fontWeight: fontWeight,
),
style,
t,
)!;