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