TestIssue constructor

TestIssue({
  1. String? category,
  2. String? errorMessage,
  3. String? severity,
  4. StackTrace? stackTrace,
  5. String? type,
  6. Any? warning,
})

Implementation

TestIssue({
  this.category,
  this.errorMessage,
  this.severity,
  this.stackTrace,
  this.type,
  this.warning,
});