CancelDeploymentResponse.fromJson constructor

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

Implementation

factory CancelDeploymentResponse.fromJson(Map<String, dynamic> json) {
  return CancelDeploymentResponse(
    message: json['message'] as String?,
  );
}