lerp method
Linearly interpolates with another Spec object.
Implementation
@override
IntrinsicHeightModifier lerp(IntrinsicHeightModifier? other, double t) {
if (other == null) return this;
return const IntrinsicHeightModifier();
}
Linearly interpolates with another Spec object.
@override
IntrinsicHeightModifier lerp(IntrinsicHeightModifier? other, double t) {
if (other == null) return this;
return const IntrinsicHeightModifier();
}