RepricingRuleStatsBasedRule.fromJson constructor

RepricingRuleStatsBasedRule.fromJson(
  1. Map json_
)

Implementation

RepricingRuleStatsBasedRule.fromJson(core.Map json_)
    : this(
        percentageDelta: json_.containsKey('percentageDelta')
            ? json_['percentageDelta'] as core.int
            : null,
        priceDelta: json_.containsKey('priceDelta')
            ? json_['priceDelta'] as core.String
            : null,
      );