NonGuaranteedFixedPriceTerms.fromJson constructor
NonGuaranteedFixedPriceTerms.fromJson(
- Map _json
Implementation
NonGuaranteedFixedPriceTerms.fromJson(core.Map _json)
: this(
fixedPrices: _json.containsKey('fixedPrices')
? (_json['fixedPrices'] as core.List)
.map<PricePerBuyer>((value) => PricePerBuyer.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);