RestrictionChange.fromJson constructor

RestrictionChange.fromJson(
  1. Map json_
)

Implementation

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