interpolate method
Interpolates to step
between this
and end
.
Implementation
@override
OklabColor interpolate(cm.ColorModel end, double step) {
assert(step >= 0.0 && step <= 1.0);
return super.interpolate(end, step).cast();
}
Interpolates to step
between this
and end
.
@override
OklabColor interpolate(cm.ColorModel end, double step) {
assert(step >= 0.0 && step <= 1.0);
return super.interpolate(end, step).cast();
}