lerp method

  1. @override
ThemeProperty<double> lerp(
  1. ThemeProperty<double> other,
  2. double t
)
override

Linearly interpolate between value and other.

Implementation

@override
ThemeProperty<double> lerp(ThemeProperty<double> other, double t) {
  return DoubleThemeProperty(ui.lerpDouble(value, other.value, t)!);
}