GoogleCloudApigeeV1OASDocumentation.fromJson constructor

GoogleCloudApigeeV1OASDocumentation.fromJson(
  1. Map json_
)

Implementation

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