EntityIssue constructor

EntityIssue({
  1. String? code,
  2. String? ddl,
  3. String? entityType,
  4. String? id,
  5. String? message,
  6. Position? position,
  7. String? severity,
  8. String? type,
})

Implementation

EntityIssue({
  this.code,
  this.ddl,
  this.entityType,
  this.id,
  this.message,
  this.position,
  this.severity,
  this.type,
});