GoogleCloudDatacatalogV1ModifyEntryOverviewRequest.fromJson constructor

GoogleCloudDatacatalogV1ModifyEntryOverviewRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogV1ModifyEntryOverviewRequest.fromJson(core.Map json_)
  : this(
      entryOverview:
          json_.containsKey('entryOverview')
              ? GoogleCloudDatacatalogV1EntryOverview.fromJson(
                json_['entryOverview'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );