GoogleCloudApihubV1StyleGuide.fromJson constructor

GoogleCloudApihubV1StyleGuide.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApihubV1StyleGuide.fromJson(core.Map json_)
  : this(
      contents: json_.containsKey('contents')
          ? GoogleCloudApihubV1StyleGuideContents.fromJson(
              json_['contents'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      linter: json_['linter'] as core.String?,
      name: json_['name'] as core.String?,
    );