lerp method
Linearly interpolate with another Spec object.
Implementation
@override
MdTextStyle lerp(
MdTextStyle? other,
double t,
) {
return MdTextStyle(
textStyle: TextStyle.lerp(textStyle, other?.textStyle, t),
padding: EdgeInsets.lerp(padding, other?.padding, t),
);
}