copyValuesFrom method

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

Copies the result of other as its own.

Implementation

@override
void copyValuesFrom(covariant SmoothedSlowStochasticIndicator<T> other) {
  super.copyValuesFrom(other);
  _smaIndicator.copyValuesFrom(other._smaIndicator);
}