GoogleCloudApigeeV1OASDocumentation.fromJson constructor

GoogleCloudApigeeV1OASDocumentation.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1OASDocumentation.fromJson(core.Map json_)
  : this(
      format: json_['format'] as core.String?,
      spec: json_.containsKey('spec')
          ? GoogleCloudApigeeV1DocumentationFile.fromJson(
              json_['spec'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );