PriceCompetitiveness.fromJson constructor

PriceCompetitiveness.fromJson(
  1. Map json_
)

Implementation

PriceCompetitiveness.fromJson(core.Map json_)
  : this(
      benchmarkPriceCurrencyCode:
          json_['benchmarkPriceCurrencyCode'] as core.String?,
      benchmarkPriceMicros: json_['benchmarkPriceMicros'] as core.String?,
      countryCode: json_['countryCode'] as core.String?,
    );