GoogleCloudDataplexV1Partition.fromJson constructor
GoogleCloudDataplexV1Partition.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1Partition.fromJson(core.Map json_)
: this(
etag: json_.containsKey('etag') ? json_['etag'] as core.String : null,
location: json_.containsKey('location')
? json_['location'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
values: json_.containsKey('values')
? (json_['values'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);