GoogleCloudDatapipelinesV1RunPipelineResponse.fromJson constructor

GoogleCloudDatapipelinesV1RunPipelineResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatapipelinesV1RunPipelineResponse.fromJson(core.Map json_)
  : this(
      job:
          json_.containsKey('job')
              ? GoogleCloudDatapipelinesV1Job.fromJson(
                json_['job'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );