os getters estao com erro como arrumar?
export class Negociacao {
privete _data;
privete _quantidade;
privete _valor;
constructor(data, quantidade, valor) {
this._data = data;
this._quantidade = quantidade;
this._valor = valor;
}
}
get data() {
return this._data;
}
get quantidade() {
return this._quantidade;
}
get valor() {
return this._valor
}
get volume() {
return this._quantidade * this._valor;
}