lerp static method

Implementation

static Typography lerp(Typography? a, Typography? b, double t) {
  return Typography(
    header: TextStyle.lerp(a?.header, b?.header, t),
    subheader: TextStyle.lerp(a?.subheader, b?.subheader, t),
    title: TextStyle.lerp(a?.title, b?.title, t),
    subtitle: TextStyle.lerp(a?.subtitle, b?.subtitle, t),
    base: TextStyle.lerp(a?.base, b?.base, t),
    body: TextStyle.lerp(a?.body, b?.body, t),
    caption: TextStyle.lerp(a?.caption, b?.caption, t),
  );
}