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