PreferredDealTerms.fromJson constructor

PreferredDealTerms.fromJson(
  1. 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,
    );