lerp static method

Implementation

static MiniTypographyTokens lerp(
  MiniTypographyTokens a,
  MiniTypographyTokens b,
  double t,
) {
  return MiniTypographyTokens(
    body: TextStyle.lerp(a.body, b.body, t) ?? b.body,
    small: TextStyle.lerp(a.small, b.small, t) ?? b.small,
    title: TextStyle.lerp(a.title, b.title, t) ?? b.title,
    heading: TextStyle.lerp(a.heading, b.heading, t) ?? b.heading,
  );
}