GoogleCloudDataplexV1DataAttributeBindingPath.fromJson constructor

GoogleCloudDataplexV1DataAttributeBindingPath.fromJson(
  1. Map json_
)

Implementation

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