GoogleCloudApigeeV1AsyncApiDocumentation.fromJson constructor

GoogleCloudApigeeV1AsyncApiDocumentation.fromJson(
  1. Map json_
)

Implementation

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