GoogleIamV2PolicyRule.fromJson constructor
GoogleIamV2PolicyRule.fromJson(
- Map json_
Implementation
GoogleIamV2PolicyRule.fromJson(core.Map json_)
: this(
denyRule: json_.containsKey('denyRule')
? GoogleIamV2DenyRule.fromJson(
json_['denyRule'] as core.Map<core.String, core.dynamic>)
: null,
description: json_.containsKey('description')
? json_['description'] as core.String
: null,
);