GoogleCloudIntegrationsV1alphaUploadTemplateResponse.fromJson constructor

GoogleCloudIntegrationsV1alphaUploadTemplateResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaUploadTemplateResponse.fromJson(core.Map json_)
  : this(
      template: json_.containsKey('template')
          ? GoogleCloudIntegrationsV1alphaTemplate.fromJson(
              json_['template'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );