GoogleCloudApihubV1LookupRuntimeProjectAttachmentResponse.fromJson constructor

GoogleCloudApihubV1LookupRuntimeProjectAttachmentResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApihubV1LookupRuntimeProjectAttachmentResponse.fromJson(
  core.Map json_,
) : this(
      runtimeProjectAttachment: json_.containsKey('runtimeProjectAttachment')
          ? GoogleCloudApihubV1RuntimeProjectAttachment.fromJson(
              json_['runtimeProjectAttachment']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );