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