Problem constructor

Problem({
  1. String? affectedResource,
  2. DateTime? endTime,
  3. Map<FeedbackKey, FeedbackValue>? feedback,
  4. String? id,
  5. String? insights,
  6. String? resourceGroupName,
  7. SeverityLevel? severityLevel,
  8. DateTime? startTime,
  9. Status? status,
  10. String? title,
})

Implementation

Problem({
  this.affectedResource,
  this.endTime,
  this.feedback,
  this.id,
  this.insights,
  this.resourceGroupName,
  this.severityLevel,
  this.startTime,
  this.status,
  this.title,
});