lerp static method
Linearly interpolates the provided objects based on the given t
value.
Implementation
static Smallest lerp(Smallest a, Smallest? b, double t) {
return Smallest._(
regular: SmallestRegular.lerp(a.regular, b?.regular, t),
);
}