Deployment constructor

Deployment({
  1. Map<String, Map<String, MethodSnapshot>>? apiSummary,
  2. DateTime? createdDate,
  3. String? description,
  4. String? id,
})

Implementation

Deployment({
  this.apiSummary,
  this.createdDate,
  this.description,
  this.id,
});