GoogleCloudContentwarehouseV1FetchAclResponse.fromJson constructor
GoogleCloudContentwarehouseV1FetchAclResponse.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1FetchAclResponse.fromJson(core.Map json_)
: this(
metadata: json_.containsKey('metadata')
? GoogleCloudContentwarehouseV1ResponseMetadata.fromJson(
json_['metadata'] as core.Map<core.String, core.dynamic>)
: null,
policy: json_.containsKey('policy')
? GoogleIamV1Policy.fromJson(
json_['policy'] as core.Map<core.String, core.dynamic>)
: null,
);