BingoObject.prototype.estimateRemainingTime = function()

in bingo.js [300:305]


BingoObject.prototype.estimateRemainingTime = function() {
    this.indigo._setSessionId();
    const value = alloc('float');
    Bingo._checkResult(this.indigo, this.bingo._lib.bingoEstimateRemainingTime(this.id, value));
    return value.deref();
};