class Round { int _nbPoints; int get nbPoints => _nbPoints; set nbPoints(int value) { _nbPoints = value; } Round(this._nbPoints); }