RestrictionChange.fromJson constructor
RestrictionChange.fromJson(
- Map json_
Implementation
RestrictionChange.fromJson(core.Map json_)
: this(
feature: json_.containsKey('feature')
? json_['feature'] as core.String
: null,
newRestriction: json_.containsKey('newRestriction')
? json_['newRestriction'] as core.String
: null,
);