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