copyValuesFrom method

  1. @override
void copyValuesFrom(
  1. covariant BollingerBandsUpperIndicator<T> other
)
override

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);
}