lerp method
Linearly interpolates this theme toward other by t.
Implementation
FdcEditorThemeData lerp(FdcEditorThemeData other, double t) {
return FdcEditorThemeData(
input: input.lerp(other.input, t),
controls: controls.lerp(other.controls, t),
comboPopup: comboPopup.lerp(other.comboPopup, t),
counter: counter.lerp(other.counter, t),
);
}