GoogleCloudApigeeV1DocumentationFile.fromJson constructor

GoogleCloudApigeeV1DocumentationFile.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1DocumentationFile.fromJson(core.Map json_)
    : this(
        contents: json_.containsKey('contents')
            ? json_['contents'] as core.String
            : null,
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
      );