PrivateAuctionTerms.fromJson constructor
PrivateAuctionTerms.fromJson(
- Map json_
Implementation
PrivateAuctionTerms.fromJson(core.Map json_)
: this(
floorPrice: json_.containsKey('floorPrice')
? Price.fromJson(
json_['floorPrice'] as core.Map<core.String, core.dynamic>,
)
: null,
openAuctionAllowed: json_['openAuctionAllowed'] as core.bool?,
);