NonGuaranteedFixedPriceTerms.fromJson constructor

NonGuaranteedFixedPriceTerms.fromJson(
  1. Map _json
)

Implementation

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