copyValuesFrom method

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

Copies the result of other as its own.

Implementation

@override
void copyValuesFrom(covariant BollingerBandWidthIndicator<T> other) {
  super.copyValuesFrom(other);
  bbm.copyValuesFrom(other.bbm);
  bbu.copyValuesFrom(other.bbu);
  bbl.copyValuesFrom(other.bbl);
}