RestrictionChange.fromJson constructor

RestrictionChange.fromJson(
  1. 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,
      );