success method

FlutterTencentBiddingResult success(
  1. int expectCostPrice,
  2. int highestLossPrice
)

竞价成功

expectCostPrice 竞胜出价,类型为Integer

highestLossPrice 最大竞败方出价,类型为Integer

Implementation

FlutterTencentBiddingResult success(int expectCostPrice,int highestLossPrice) {
  this.isSuccess = true;
  this.expectCostPrice = expectCostPrice;
  this.highestLossPrice = highestLossPrice;
  return this;
}