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