lerp method
Linearly interpolates between this theme and other.
Implementation
@override
M3ESelectionTheme lerp(M3ESelectionTheme? other, double t) {
if (other is! M3ESelectionTheme) {
return this;
}
return t < 0.5 ? this : other;
}
Linearly interpolates between this theme and other.
@override
M3ESelectionTheme lerp(M3ESelectionTheme? other, double t) {
if (other is! M3ESelectionTheme) {
return this;
}
return t < 0.5 ? this : other;
}