GoogleCloudIntegrationsV1alphaSerializedFile.fromJson constructor

GoogleCloudIntegrationsV1alphaSerializedFile.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaSerializedFile.fromJson(core.Map json_)
    : this(
        content: json_.containsKey('content')
            ? json_['content'] as core.String
            : null,
        file: json_.containsKey('file') ? json_['file'] as core.String : null,
      );