AccountItemUpdatesSettings.fromJson constructor
AccountItemUpdatesSettings.fromJson(
- Map json_
Implementation
AccountItemUpdatesSettings.fromJson(core.Map json_)
: this(
allowAvailabilityUpdates:
json_.containsKey('allowAvailabilityUpdates')
? json_['allowAvailabilityUpdates'] as core.bool
: null,
allowConditionUpdates: json_.containsKey('allowConditionUpdates')
? json_['allowConditionUpdates'] as core.bool
: null,
allowPriceUpdates: json_.containsKey('allowPriceUpdates')
? json_['allowPriceUpdates'] as core.bool
: null,
allowStrictAvailabilityUpdates:
json_.containsKey('allowStrictAvailabilityUpdates')
? json_['allowStrictAvailabilityUpdates'] as core.bool
: null,
);