DeleteDeploymentGroupOutput.fromJson constructor

DeleteDeploymentGroupOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DeleteDeploymentGroupOutput.fromJson(Map<String, dynamic> json) {
  return DeleteDeploymentGroupOutput(
    hooksNotCleanedUp: (json['hooksNotCleanedUp'] as List?)
        ?.whereNotNull()
        .map((e) => AutoScalingGroup.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}