PolicyRule.fromJson constructor

PolicyRule.fromJson(
  1. Map json_
)

Implementation

PolicyRule.fromJson(core.Map json_)
    : this(
        rolloutRestriction: json_.containsKey('rolloutRestriction')
            ? RolloutRestriction.fromJson(json_['rolloutRestriction']
                as core.Map<core.String, core.dynamic>)
            : null,
      );