Interaction constructor

Interaction(
  1. DateTime time,
  2. String correctness,
  3. String type,
  4. String description,
)

Implementation

Interaction(
    DateTime time, String correctness, String type, String description) {
  this._time = time;
  this._correctness = correctness;
  this._type = type;
  this._description = description;
}