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