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