RegionalPriceMigrationConfig.fromJson constructor
RegionalPriceMigrationConfig.fromJson(
- Map json_
Implementation
RegionalPriceMigrationConfig.fromJson(core.Map json_)
: this(
oldestAllowedPriceVersionTime:
json_.containsKey('oldestAllowedPriceVersionTime')
? json_['oldestAllowedPriceVersionTime'] as core.String
: null,
priceIncreaseType: json_.containsKey('priceIncreaseType')
? json_['priceIncreaseType'] as core.String
: null,
regionCode: json_.containsKey('regionCode')
? json_['regionCode'] as core.String
: null,
);