DeploymentUpdate.fromJson constructor

DeploymentUpdate.fromJson(
  1. Map json_
)

Implementation

DeploymentUpdate.fromJson(core.Map json_)
  : this(
      description: json_['description'] as core.String?,
      labels:
          (json_['labels'] as core.List?)
              ?.map(
                (value) => DeploymentUpdateLabelEntry.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      manifest: json_['manifest'] as core.String?,
    );