lerp method

Linearly interpolate between value and other.

Implementation

@override
ThemeProperty<EdgeInsets> lerp(ThemeProperty<EdgeInsets> other, double t) {
  return EdgeInsetsThemeProperty(EdgeInsets.lerp(value, other.value, t)!);
}