lerp method
Returns the value this tween has at the given animation clock value.
Implementation
@override
WxTextTileThemeData? lerp(double t) {
return begin?.lerp(end, t) ?? end;
}
Returns the value this tween has at the given animation clock value.
@override
WxTextTileThemeData? lerp(double t) {
return begin?.lerp(end, t) ?? end;
}