GoogleCloudDatacatalogV1ModifyEntryContactsRequest.fromJson constructor
GoogleCloudDatacatalogV1ModifyEntryContactsRequest.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogV1ModifyEntryContactsRequest.fromJson(core.Map json_)
: this(
contacts:
json_.containsKey('contacts')
? GoogleCloudDatacatalogV1Contacts.fromJson(
json_['contacts'] as core.Map<core.String, core.dynamic>,
)
: null,
);