FlutterTencentBiddingResult.fromJson constructor

FlutterTencentBiddingResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

FlutterTencentBiddingResult.fromJson(Map<String, dynamic> json) {
  expectCostPrice = json['expectCostPrice'];
  highestLossPrice = json['highestLossPrice'];
  winPrice = json['winPrice'];
  lossReason = json['lossReason'];
  adnId = json['adnId'];
}