copyValuesFrom method
Copies the result of other as its own.
Implementation
@override
void copyValuesFrom(covariant BollingerBandsUpperIndicator<T> other) {
super.copyValuesFrom(other);
deviation.copyValuesFrom(other.deviation);
bbm.copyValuesFrom(other.bbm);
}