GoogleCloudDataplexV1Partition.fromJson constructor

GoogleCloudDataplexV1Partition.fromJson(
  1. Map json_
)

Implementation

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