PriceCompetitiveness.fromJson constructor

PriceCompetitiveness.fromJson(
  1. Map json_
)

Implementation

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