Deployment constructor

Deployment({
  1. int? deploymentId,
  2. DateTime? deploymentTime,
  3. String? status,
  4. String? versionLabel,
})

Implementation

Deployment({
  this.deploymentId,
  this.deploymentTime,
  this.status,
  this.versionLabel,
});