DeploymentSource.fromJson constructor

DeploymentSource.fromJson(
  1. Map json_
)

Implementation

DeploymentSource.fromJson(core.Map json_)
  : this(
      deployment: json_['deployment'] as core.String?,
      outputName: json_['outputName'] as core.String?,
    );