GoogleCloudApigeeV1InstanceAttachment.fromJson constructor

GoogleCloudApigeeV1InstanceAttachment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1InstanceAttachment.fromJson(core.Map json_)
    : this(
        createdAt: json_.containsKey('createdAt')
            ? json_['createdAt'] as core.String
            : null,
        environment: json_.containsKey('environment')
            ? json_['environment'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );