FixKind constructor

const FixKind(
  1. String id,
  2. int priority,
  3. String message
)

Initialize a newly created kind of fix to have the given id, priority, and message.

Implementation

const FixKind(this.id, this.priority, this.message);