GoogleCloudApigeeV1KeyValueMap.fromJson constructor

GoogleCloudApigeeV1KeyValueMap.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1KeyValueMap.fromJson(core.Map json_)
    : this(
        encrypted: json_.containsKey('encrypted')
            ? json_['encrypted'] as core.bool
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );