PrivateAuctionTerms.fromJson constructor

PrivateAuctionTerms.fromJson(
  1. 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_.containsKey('openAuctionAllowed')
            ? json_['openAuctionAllowed'] as core.bool
            : null,
      );